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/20120309130609_create_mash_...

14 lines
234 B

class CreateMashTournaments < ActiveRecord::Migration
def self.up
create_table :mash_tournaments do |t|
t.integer :requester_id
t.timestamps
end
end
def self.down
drop_table :mash_tournaments
end
end