box-o-sand/oldstuff/map-mash/db/migrate/20120309000749_create_requesters.rb

14 lines
206 B
Ruby
Raw Normal View History

2012-04-04 03:02:32 +00:00
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