Skip to content

Instantly share code, notes, and snippets.

@jlebrech
Created February 6, 2013 10:20
Show Gist options
  • Save jlebrech/4721666 to your computer and use it in GitHub Desktop.
Save jlebrech/4721666 to your computer and use it in GitHub Desktop.
Instead of a blank migration, a commented out but moderately complex example (using the name from the cli)
# class AddCategories < ActiveRecord::Migration
# def up
# create_table :categories do |t|
# t.string :name
# t.integer :score
# ... # other examples
# end
# end
# def down
# drop_table :categories
# end
# end
class AddCategories < ActiveRecord::Migration
def up
end
def down
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment