mirror of
https://gitlab.com/flectra-community/partner-contact.git
synced 2024-11-15 02:32:04 +00:00
12 lines
337 B
Python
12 lines
337 B
Python
# Copyright 2017 Franco Tampieri, Freelancer http://franco.tampieri.info
|
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
|
|
|
from flectra import fields, models
|
|
|
|
|
|
class ResCountry(models.Model):
|
|
_inherit = "res.country"
|
|
|
|
geonames_state_name_column = fields.Integer()
|
|
geonames_state_code_column = fields.Integer()
|