You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
box-o-sand/rails/map-mash/db/migrate/20120304164625_create_mashe...

22 lines
480 B

class CreateMashes < ActiveRecord::Migration
def self.up
create_table :mashes do |t|
t.string :requester, :null => false
t.integer :map_a, :null => false
t.integer :map_b, :null => false
t.integer :winner, :null => false
t.timestamps
end
add_index :mashes, [:winner]
add_index :mashes, [:requester]
end
def self.down
remove_index :mashes, [:winner]
remove_index :mashes, [:requester]
drop_table :mashes
end
end