Created
February 6, 2013 10:20
-
-
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)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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