basic_app/migrations/00450_create_map_contents.rb
Nicolas Bally fd027c16c1 initial
2020-04-21 21:53:16 +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