Add migrated flag to module_api_cartos

This commit is contained in:
Paul Chavard 2018-10-31 11:17:03 +01:00
parent 90d4d8a393
commit e63fd9d573
2 changed files with 6 additions and 0 deletions

View file

@ -0,0 +1,5 @@
class AddMigratedToModuleAPICartos < ActiveRecord::Migration[5.2]
def change
add_column :module_api_cartos, :migrated, :boolean
end
end

View file

@ -408,6 +408,7 @@ ActiveRecord::Schema.define(version: 2018_11_08_151929) do
t.boolean "cadastre", default: false
t.datetime "created_at"
t.datetime "updated_at"
t.boolean "migrated"
t.index ["procedure_id"], name: "index_module_api_cartos_on_procedure_id", unique: true
end