Sha256: b14b54f32fdc8a7decd7b82787f0313149514bf66c997fbb6e90356898aac66f
Contents?: true
Size: 214 Bytes
Versions: 47
Compression:
Stored size: 214 Bytes
Contents
class CreateComments < ActiveRecord::Migration def up create_table :comments do |t| t.text :body t.integer :post_id t.timestamps end end def down drop_table :comments end end
Version data entries
47 entries across 47 versions & 1 rubygems