mirror of https://github.com/interlegis/sapl.git
Marcio Mazza
7 years ago
7 changed files with 115 additions and 19 deletions
@ -0,0 +1,25 @@ |
|||
# -*- coding: utf-8 -*- |
|||
# Generated by Django 1.9.13 on 2018-06-13 23:23 |
|||
from __future__ import unicode_literals |
|||
|
|||
from django.db import migrations, models |
|||
|
|||
|
|||
class Migration(migrations.Migration): |
|||
|
|||
dependencies = [ |
|||
('comissoes', '0014_auto_20180503_1055'), |
|||
] |
|||
|
|||
operations = [ |
|||
migrations.AlterField( |
|||
model_name='reuniao', |
|||
name='hora_fim', |
|||
field=models.TimeField(null=True, verbose_name='Horário de Término (hh:mm)'), |
|||
), |
|||
migrations.AlterField( |
|||
model_name='reuniao', |
|||
name='hora_inicio', |
|||
field=models.TimeField(null=True, verbose_name='Horário de Início (hh:mm)'), |
|||
), |
|||
] |
@ -0,0 +1,21 @@ |
|||
# -*- coding: utf-8 -*- |
|||
# Generated by Django 1.9.13 on 2018-06-14 00:21 |
|||
from __future__ import unicode_literals |
|||
|
|||
from django.db import migrations, models |
|||
import django.db.models.deletion |
|||
|
|||
|
|||
class Migration(migrations.Migration): |
|||
|
|||
dependencies = [ |
|||
('comissoes', '0015_auto_20180613_2023'), |
|||
] |
|||
|
|||
operations = [ |
|||
migrations.AlterField( |
|||
model_name='reuniao', |
|||
name='periodo', |
|||
field=models.ForeignKey(null=True, on_delete=django.db.models.deletion.PROTECT, to='comissoes.Periodo', verbose_name='Periodo da Composicão da Comissão'), |
|||
), |
|||
] |
Loading…
Reference in new issue