bornhack-website/src/news/migrations/0007_auto_20161220_1136.py

19 lines
417 B
Python
Raw Normal View History

# -*- coding: utf-8 -*-
# Generated by Django 1.10.4 on 2016-12-20 11:36
2017-01-30 11:16:07 +00:00
from django.db import migrations, models
class Migration(migrations.Migration):
2019-06-16 12:32:24 +00:00
dependencies = [("news", "0006_remove_newsitem_public")]
operations = [
migrations.AlterField(
2019-06-16 12:32:24 +00:00
model_name="newsitem",
name="published_at",
field=models.DateTimeField(blank=True, null=True),
2019-06-16 12:32:24 +00:00
)
]