lockaz_app/db/migrate/00450_create_map_contents.rb
Nicolas Bally f20fe482c6 initial
2020-04-06 10:38:07 +02:00

14 lines
308 B
Ruby

class CreateMapContents < ActiveRecord::Migration[6.0]
def change
create_table :map_contents do |t|
t.string :address
t.string :name
t.integer :view
t.boolean :info_bule, :default => false
t.integer :zoom
t.timestamps
end
end
end