Flowdock
method

change

Importance_0
v3.2.13 - Show latest stable - 0 notes - Class: CreateComments
change() public

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# 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
Register or log in to add new notes.