Created
July 1, 2011 12:36
-
-
Save Canx/1058454 to your computer and use it in GitHub Desktop.
modelos_1
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 CreateGrupos < ActiveRecord::Migration | |
def change | |
create_table :grupos do |t| | |
t.string :nombre | |
t.timestamps | |
end | |
end | |
end | |
class CreatePersonas < ActiveRecord::Migration | |
def change | |
create_table :personas do |t| | |
t.string :nombre | |
t.timestamps | |
end | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment