box-o-sand/rails/map-mash/db/migrate/20120309000749_create_requesters.rb
Dan Buch 8ad33d18b7 Making more messes with mashes, maps, and requesters. Maybe a teensy
bit closer on the tournament pairing algorithm (???)  ActiveRecord
associations are kind of a pain, btw.
2012-03-09 00:24:48 -05:00

14 lines
206 B
Ruby

class CreateRequesters < ActiveRecord::Migration
def self.up
create_table :requesters do |t|
t.string :ip
t.timestamps
end
end
def self.down
drop_table :requesters
end
end