box-o-sand/map-mash/db/migrate/20120304164625_create_mashes.rb

23 lines
517 B
Ruby
Raw Normal View History

2012-03-04 16:51:35 +00:00
class CreateMashes < ActiveRecord::Migration
def self.up
create_table :mashes do |t|
t.integer :mash_tournament_id, :null => false
t.integer :map_a_id
t.integer :map_b_id
t.integer :winner_id
t.integer :mash_tournament_round_id
2012-03-04 16:51:35 +00:00
t.timestamps
end
add_index :mashes, [:winner_id]
add_index :mashes, [:mash_tournament_id]
2012-03-04 16:51:35 +00:00
end
def self.down
remove_index :mashes, [:winner_id]
remove_index :mashes, [:mash_tournament_id]
2012-03-04 16:51:35 +00:00
drop_table :mashes
end
end