# -*- coding: utf-8 -*-
from __future__ import unicode_literals

from django.db import migrations, models
import datetime
from django.utils.timezone import utc


class Migration(migrations.Migration):

    dependencies = [
        ('news', '0004_auto_20160405_1038'),
    ]

    operations = [
        migrations.AlterModelOptions(
            name='newsarticle',
            options={'ordering': ['-date']},
        ),
        migrations.RemoveField(
            model_name='newsarticle',
            name='created',
        ),
        migrations.AddField(
            model_name='newsarticle',
            name='date',
            field=models.DateTimeField(default=datetime.datetime(2016, 4, 5, 10, 2, 26, 585074, tzinfo=utc)),
            preserve_default=False,
        ),
    ]
