1234567891011121314151617181920 |
- # -*- coding: utf-8 -*-
- # Generated by Django 1.11.2 on 2017-08-16 20:48
- from __future__ import unicode_literals
- from django.db import migrations, models
- class Migration(migrations.Migration):
- dependencies = [
- ('backoffice', '0008_auto_20170816_2243'),
- ]
- operations = [
- migrations.AlterField(
- model_name='reference',
- name='issued_date',
- field=models.DateTimeField(blank=True, null=True, verbose_name='date published'),
- ),
- ]
|