mirror of https://github.com/interlegis/sapl.git
Edward Ribeiro
9 years ago
6 changed files with 92 additions and 7 deletions
@ -0,0 +1,25 @@ |
|||||
|
# -*- coding: utf-8 -*- |
||||
|
# Generated by Django 1.9 on 2016-03-07 12:18 |
||||
|
from __future__ import unicode_literals |
||||
|
|
||||
|
from django.db import migrations, models |
||||
|
|
||||
|
|
||||
|
class Migration(migrations.Migration): |
||||
|
|
||||
|
dependencies = [ |
||||
|
('compilacao', '0043_auto_20160110_1733'), |
||||
|
] |
||||
|
|
||||
|
operations = [ |
||||
|
migrations.AlterField( |
||||
|
model_name='nota', |
||||
|
name='url_externa', |
||||
|
field=models.URLField(blank=True, max_length=1024, verbose_name='Url externa'), |
||||
|
), |
||||
|
migrations.AlterField( |
||||
|
model_name='publicacao', |
||||
|
name='url_externa', |
||||
|
field=models.URLField(blank=True, max_length=1024, verbose_name='Link para Versão Eletrônica'), |
||||
|
), |
||||
|
] |
@ -0,0 +1,25 @@ |
|||||
|
# -*- coding: utf-8 -*- |
||||
|
# Generated by Django 1.9 on 2016-03-07 12:18 |
||||
|
from __future__ import unicode_literals |
||||
|
|
||||
|
from django.db import migrations, models |
||||
|
|
||||
|
|
||||
|
class Migration(migrations.Migration): |
||||
|
|
||||
|
dependencies = [ |
||||
|
('lexml', '0003_auto_20160216_1015'), |
||||
|
] |
||||
|
|
||||
|
operations = [ |
||||
|
migrations.AlterField( |
||||
|
model_name='lexmlprovedor', |
||||
|
name='email_responsavel', |
||||
|
field=models.EmailField(blank=True, max_length=50, verbose_name='E-mail do responsável'), |
||||
|
), |
||||
|
migrations.AlterField( |
||||
|
model_name='lexmlpublicador', |
||||
|
name='email_responsavel', |
||||
|
field=models.EmailField(blank=True, max_length=50, verbose_name='E-mail do responsável'), |
||||
|
), |
||||
|
] |
@ -0,0 +1,35 @@ |
|||||
|
# -*- coding: utf-8 -*- |
||||
|
# Generated by Django 1.9 on 2016-03-07 12:18 |
||||
|
from __future__ import unicode_literals |
||||
|
|
||||
|
from django.db import migrations, models |
||||
|
|
||||
|
|
||||
|
class Migration(migrations.Migration): |
||||
|
|
||||
|
dependencies = [ |
||||
|
('sessao', '0014_auto_20160223_0813'), |
||||
|
] |
||||
|
|
||||
|
operations = [ |
||||
|
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'), |
||||
|
), |
||||
|
migrations.AlterField( |
||||
|
model_name='sessaoplenaria', |
||||
|
name='url_audio', |
||||
|
field=models.URLField(blank=True, max_length=150, verbose_name='URL Arquivo Áudio (Formatos MP3 / AAC)'), |
||||
|
), |
||||
|
migrations.AlterField( |
||||
|
model_name='sessaoplenaria', |
||||
|
name='url_video', |
||||
|
field=models.URLField(blank=True, max_length=150, verbose_name='URL Arquivo Vídeo (Formatos MP4 / FLV / WebM)'), |
||||
|
), |
||||
|
] |
Loading…
Reference in new issue