panier_app/migrations/00450_create_map_contents.rb
Nicolas Bally d744a04b28 initial
2020-10-30 22:26:40 +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