Add migrated flag to module_api_cartos
This commit is contained in:
parent
90d4d8a393
commit
e63fd9d573
2 changed files with 6 additions and 0 deletions
|
@ -0,0 +1,5 @@
|
|||
class AddMigratedToModuleAPICartos < ActiveRecord::Migration[5.2]
|
||||
def change
|
||||
add_column :module_api_cartos, :migrated, :boolean
|
||||
end
|
||||
end
|
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in a new issue