mirror of https://github.com/interlegis/sapl.git
Browse Source
* fix #2396 * Muda pre população de tipo de vínculo para ocorrer no finalpull/2409/head
Victor Fabre
6 years ago
committed by
Edward
9 changed files with 66 additions and 8 deletions
@ -0,0 +1,20 @@ |
|||||
|
# -*- coding: utf-8 -*- |
||||
|
# Generated by Django 1.10.8 on 2018-11-23 14:51 |
||||
|
from __future__ import unicode_literals |
||||
|
|
||||
|
from django.db import migrations, models |
||||
|
|
||||
|
|
||||
|
class Migration(migrations.Migration): |
||||
|
|
||||
|
dependencies = [ |
||||
|
('norma', '0015_auto_20181109_1422'), |
||||
|
] |
||||
|
|
||||
|
operations = [ |
||||
|
migrations.AddField( |
||||
|
model_name='tipovinculonormajuridica', |
||||
|
name='revoga_integramente', |
||||
|
field=models.BooleanField(choices=[(True, 'Sim'), (False, 'Não')], default=False, verbose_name='Revoga Integralmente?'), |
||||
|
), |
||||
|
] |
@ -0,0 +1,20 @@ |
|||||
|
# -*- coding: utf-8 -*- |
||||
|
# Generated by Django 1.10.8 on 2018-11-27 11:55 |
||||
|
from __future__ import unicode_literals |
||||
|
|
||||
|
from django.db import migrations |
||||
|
|
||||
|
|
||||
|
class Migration(migrations.Migration): |
||||
|
|
||||
|
dependencies = [ |
||||
|
('norma', '0016_tipovinculonormajuridica_revoga_integramente'), |
||||
|
] |
||||
|
|
||||
|
operations = [ |
||||
|
migrations.RenameField( |
||||
|
model_name='tipovinculonormajuridica', |
||||
|
old_name='revoga_integramente', |
||||
|
new_name='revoga_integralmente', |
||||
|
), |
||||
|
] |
Loading…
Reference in new issue