Sha256: 4eaff87b39a6ada14bacad1c213e072ab56321711cd0ecfa2a2520675af3a69e
Contents?: true
Size: 243 Bytes
Versions: 19
Compression:
Stored size: 243 Bytes
Contents
class CreateAdminPosts < ActiveRecord::Migration def self.up create_table :posts do |t| t.integer :user_id t.string :title t.text :body t.timestamps end end def self.down drop_table :posts end end
Version data entries
19 entries across 19 versions & 1 rubygems