basic_dem_app/migrations/00450_create_map_contents.rb
Nicolas Bally 3524d4c862 intial
2020-03-18 15:49:29 +01: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