mirror of https://github.com/interlegis/sapl.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.
29 lines
675 B
29 lines
675 B
# -*- coding: utf-8 -*-
|
|
|
|
|
|
from django.db import models, migrations
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('materia', '0001_initial'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.RenameField(
|
|
model_name='materialegislativa',
|
|
old_name='ano_ident_basica',
|
|
new_name='ano',
|
|
),
|
|
migrations.RenameField(
|
|
model_name='materialegislativa',
|
|
old_name='numero_ident_basica',
|
|
new_name='numero',
|
|
),
|
|
migrations.RenameField(
|
|
model_name='materialegislativa',
|
|
old_name='tipo_id_basica',
|
|
new_name='tipo',
|
|
),
|
|
]
|
|
|