method

change

change()
public

No documentation available.

# File railties/guides/code/getting_started/db/migrate/20110901013701_create_tags.rb, line 2
  def change
    create_table :tags do |t|
      t.string :name
      t.references :post

      t.timestamps
    end
    add_index :tags, :post_id
  end