public-health-ch/publichealth/home/migrations/0007_articlepage_date.py

21 lines
478 B
Python
Raw Normal View History

2017-03-08 22:04:25 +00:00
# -*- coding: utf-8 -*-
# Generated by Django 1.10.5 on 2017-03-08 21:49
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('home', '0006_auto_20170308_2025'),
]
operations = [
migrations.AddField(
model_name='articlepage',
name='date',
field=models.DateField(blank=True, null=True, verbose_name='Date'),
),
]