2012-10-24 02:47:08 -04:00
|
|
|
class CreateMaps < ActiveRecord::Migration
|
|
|
|
def change
|
|
|
|
create_table :maps do |t|
|
2012-10-26 06:04:52 -04:00
|
|
|
t.text :name
|
2012-12-03 18:40:14 -05:00
|
|
|
t.boolean :arranged
|
2012-10-26 06:04:52 -04:00
|
|
|
t.text :desc
|
|
|
|
t.text :permission
|
|
|
|
t.integer :user_id
|
2012-10-24 02:47:08 -04:00
|
|
|
t.timestamps
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|