Skip to content

Instantly share code, notes, and snippets.

@Canx
Created July 1, 2011 12:36
Show Gist options
  • Save Canx/1058454 to your computer and use it in GitHub Desktop.
Save Canx/1058454 to your computer and use it in GitHub Desktop.
modelos_1
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