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.
31 lines
963 B
31 lines
963 B
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.11.20 on 2019-08-29 15:53
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('sessao', '0046_auto_20190827_1228'),
|
|
('sessao', '0046_auto_20191001_1115'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='registroleitura',
|
|
name='data_hora',
|
|
field=models.DateTimeField(auto_now=True, null=True, verbose_name='Data/Hora'),
|
|
),
|
|
migrations.AlterField(
|
|
model_name='registrovotacao',
|
|
name='data_hora',
|
|
field=models.DateTimeField(auto_now=True, null=True, verbose_name='Data/Hora'),
|
|
),
|
|
migrations.AlterField(
|
|
model_name='votoparlamentar',
|
|
name='data_hora',
|
|
field=models.DateTimeField(auto_now=True, null=True, verbose_name='Data/Hora'),
|
|
),
|
|
]
|
|
|