mirror of https://github.com/interlegis/sapl.git
Eduardo Edson Batista Cordeiro Alves
8 years ago
3 changed files with 43 additions and 4 deletions
@ -0,0 +1,35 @@ |
|||
# -*- coding: utf-8 -*- |
|||
# Generated by Django 1.9.7 on 2016-10-04 14:01 |
|||
from __future__ import unicode_literals |
|||
|
|||
from django.db import migrations, models |
|||
|
|||
|
|||
class Migration(migrations.Migration): |
|||
|
|||
dependencies = [ |
|||
('sessao', '0028_auto_20161004_0927'), |
|||
] |
|||
|
|||
operations = [ |
|||
migrations.AddField( |
|||
model_name='orador', |
|||
name='observacao', |
|||
field=models.CharField(blank=True, max_length=150, verbose_name='Observação'), |
|||
), |
|||
migrations.AddField( |
|||
model_name='oradorexpediente', |
|||
name='observacao', |
|||
field=models.CharField(blank=True, max_length=150, verbose_name='Observação'), |
|||
), |
|||
migrations.AlterField( |
|||
model_name='orador', |
|||
name='url_discurso', |
|||
field=models.URLField(blank=True, max_length=150, verbose_name='URL Vídeo'), |
|||
), |
|||
migrations.AlterField( |
|||
model_name='oradorexpediente', |
|||
name='url_discurso', |
|||
field=models.URLField(blank=True, max_length=150, verbose_name='URL Vídeo'), |
|||
), |
|||
] |
Loading…
Reference in new issue