mirror of https://github.com/interlegis/sapl.git
Marcio Mazza
10 years ago
2 changed files with 21 additions and 1 deletions
@ -0,0 +1,19 @@ |
|||||
|
# -*- coding: utf-8 -*- |
||||
|
from __future__ import unicode_literals |
||||
|
|
||||
|
from django.db import models, migrations |
||||
|
|
||||
|
|
||||
|
class Migration(migrations.Migration): |
||||
|
|
||||
|
dependencies = [ |
||||
|
('materia', '0001_initial'), |
||||
|
] |
||||
|
|
||||
|
operations = [ |
||||
|
migrations.AlterField( |
||||
|
model_name='proposicao', |
||||
|
name='data_envio', |
||||
|
field=models.DateTimeField(null=True), |
||||
|
), |
||||
|
] |
Loading…
Reference in new issue