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.
27 lines
785 B
27 lines
785 B
7 years ago
|
# -*- coding: utf-8 -*-
|
||
|
# Generated by Django 1.9.11 on 2018-04-17 15:09
|
||
|
from __future__ import unicode_literals
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
import django.db.models.deletion
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('sessao', '0020_auto_20180416_1424'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AlterField(
|
||
|
model_name='expedientemateria',
|
||
|
name='sessao_plenaria',
|
||
|
field=models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='sessao.SessaoPlenaria'),
|
||
|
),
|
||
|
migrations.AlterField(
|
||
|
model_name='ordemdia',
|
||
|
name='sessao_plenaria',
|
||
|
field=models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='sessao.SessaoPlenaria'),
|
||
|
),
|
||
|
]
|