mirror of https://github.com/interlegis/sigi.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
716 B
25 lines
716 B
from __future__ import unicode_literals
|
|
|
|
from django.db import models, migrations
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('convenios', '0004_auto_20210407_1928'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='convenio',
|
|
name='data_sigad',
|
|
field=models.DateField(null=True, verbose_name='data de cadastro no SIGAD', blank=True),
|
|
preserve_default=True,
|
|
),
|
|
migrations.AddField(
|
|
model_name='convenio',
|
|
name='data_sigi',
|
|
field=models.DateField(auto_now_add=True, verbose_name='data de cadastro no SIGI', null=True),
|
|
preserve_default=True,
|
|
),
|
|
]
|
|
|