method
change
rails latest stable - Class:
CreateComments
change()public
No documentation available.
# File railties/guides/code/getting_started/db/migrate/20110901012815_create_comments.rb, line 2
def change
create_table :comments do |t|
t.string :commenter
t.text :body
t.references :post
t.timestamps
end
add_index :comments, :post_id
end