box-o-sand/rails/map-mash/db/migrate/20120304151123_create_maps.rb
2012-03-04 11:51:35 -05:00

14 lines
190 B
Ruby

class CreateMaps < ActiveRecord::Migration
def self.up
create_table :maps do |t|
t.string :name
t.timestamps
end
end
def self.down
drop_table :maps
end
end