2020-08-06 16:35:45 +02:00
|
|
|
# == Schema Information
|
|
|
|
#
|
|
|
|
# Table name: module_api_cartos
|
|
|
|
#
|
|
|
|
# id :integer not null, primary key
|
|
|
|
# cadastre :boolean default(FALSE)
|
|
|
|
# migrated :boolean
|
|
|
|
# quartiers_prioritaires :boolean default(FALSE)
|
|
|
|
# use_api_carto :boolean default(FALSE)
|
|
|
|
# created_at :datetime
|
|
|
|
# updated_at :datetime
|
|
|
|
# procedure_id :integer
|
|
|
|
#
|
2018-03-06 13:44:29 +01:00
|
|
|
class ModuleAPICarto < ApplicationRecord
|
2020-07-20 17:05:21 +02:00
|
|
|
belongs_to :procedure, optional: false
|
2015-12-07 11:29:34 +01:00
|
|
|
end
|