mirror of https://github.com/interlegis/sigi.git
Sesostris Vieira
3 years ago
3 changed files with 62 additions and 0 deletions
@ -0,0 +1,19 @@ |
|||||
|
# Generated by Django 4.0.4 on 2022-05-17 13:37 |
||||
|
|
||||
|
from django.db import migrations, models |
||||
|
import django.utils.timezone |
||||
|
|
||||
|
|
||||
|
class Migration(migrations.Migration): |
||||
|
|
||||
|
dependencies = [ |
||||
|
('convenios', '0023_alter_projeto_modelo_minuta_and_more'), |
||||
|
] |
||||
|
|
||||
|
operations = [ |
||||
|
migrations.AlterField( |
||||
|
model_name='anexo', |
||||
|
name='data_pub', |
||||
|
field=models.DateTimeField(default=django.utils.timezone.localtime, verbose_name='data da publicação do anexo'), |
||||
|
), |
||||
|
] |
@ -0,0 +1,19 @@ |
|||||
|
# Generated by Django 4.0.4 on 2022-05-17 13:37 |
||||
|
|
||||
|
from django.db import migrations, models |
||||
|
import django.utils.timezone |
||||
|
|
||||
|
|
||||
|
class Migration(migrations.Migration): |
||||
|
|
||||
|
dependencies = [ |
||||
|
('eventos', '0021_equipe_assina_oficio'), |
||||
|
] |
||||
|
|
||||
|
operations = [ |
||||
|
migrations.AlterField( |
||||
|
model_name='anexo', |
||||
|
name='data_pub', |
||||
|
field=models.DateTimeField(default=django.utils.timezone.localtime, verbose_name='data da publicação do anexo'), |
||||
|
), |
||||
|
] |
@ -0,0 +1,24 @@ |
|||||
|
# Generated by Django 4.0.4 on 2022-05-17 13:37 |
||||
|
|
||||
|
from django.db import migrations, models |
||||
|
import django.utils.timezone |
||||
|
|
||||
|
|
||||
|
class Migration(migrations.Migration): |
||||
|
|
||||
|
dependencies = [ |
||||
|
('servicos', '0012_servico_data_verificacao_and_more'), |
||||
|
] |
||||
|
|
||||
|
operations = [ |
||||
|
migrations.AlterField( |
||||
|
model_name='logservico', |
||||
|
name='data', |
||||
|
field=models.DateField(default=django.utils.timezone.localdate, verbose_name='Data da ação'), |
||||
|
), |
||||
|
migrations.AlterField( |
||||
|
model_name='servico', |
||||
|
name='data_ativacao', |
||||
|
field=models.DateField(default=django.utils.timezone.localdate, verbose_name='Data de ativação'), |
||||
|
), |
||||
|
] |
Loading…
Reference in new issue