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.
23 lines
618 B
23 lines
618 B
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.9 on 2016-03-07 14:53
|
|
from __future__ import unicode_literals
|
|
|
|
import datetime
|
|
from django.db import migrations, models
|
|
from django.utils.timezone import utc
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('norma', '0010_auto_20160216_1015'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='normajuridica',
|
|
name='data',
|
|
field=models.DateField(default=datetime.datetime(2016, 3, 7, 14, 53, 52, 206255, tzinfo=utc), verbose_name='Data'),
|
|
preserve_default=False,
|
|
),
|
|
]
|
|
|