mirror of https://github.com/interlegis/sapl.git
João Rodrigues
4 years ago
2 changed files with 35 additions and 0 deletions
@ -0,0 +1,18 @@ |
|||||
|
# Generated by Django 2.2.13 on 2020-09-15 17:19 |
||||
|
|
||||
|
from django.db import migrations, models |
||||
|
|
||||
|
|
||||
|
class Migration(migrations.Migration): |
||||
|
|
||||
|
dependencies = [ |
||||
|
('base', '0042_appconfig_registro_numeracao_materia'), |
||||
|
] |
||||
|
|
||||
|
operations = [ |
||||
|
migrations.AlterField( |
||||
|
model_name='appconfig', |
||||
|
name='registro_numeracao_materia', |
||||
|
field=models.CharField(choices=[('N', 'Não registrar numeração de processo'), ('A', 'Registrar numeração de processo - sequencial por ano'), ('U', 'Registrar numeração de processo - sequencial única')], default='N', max_length=1, verbose_name='Registro de numeração de processo na criação de matérias'), |
||||
|
), |
||||
|
] |
@ -0,0 +1,17 @@ |
|||||
|
# Generated by Django 2.2.13 on 2020-09-15 17:19 |
||||
|
|
||||
|
from django.db import migrations |
||||
|
|
||||
|
|
||||
|
class Migration(migrations.Migration): |
||||
|
|
||||
|
dependencies = [ |
||||
|
('materia', '0073_auto_20200910_1420'), |
||||
|
] |
||||
|
|
||||
|
operations = [ |
||||
|
migrations.AlterModelOptions( |
||||
|
name='numeracao', |
||||
|
options={'ordering': ('materia', 'tipo_materia', 'numero_materia', 'ano_materia', 'data_materia'), 'verbose_name': 'Numeração de Processo', 'verbose_name_plural': 'Numerações de Processo'}, |
||||
|
), |
||||
|
] |
Loading…
Reference in new issue