diff options
author | luxagraf <sng@luxagraf.net> | 2016-11-01 14:42:20 -0400 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2016-11-01 14:42:20 -0400 |
commit | 541a4616c06449311cae1a793fef11bfa1ca7ace (patch) | |
tree | 498404416935822a09de181d6c82f24d79916468 /app/daily | |
parent | d061b4393663ddf81c281f51fef63b5d11beb0df (diff) |
widened site, created new photo layouts and prepped homepage redesign
Diffstat (limited to 'app/daily')
-rw-r--r-- | app/daily/migrations/0010_auto_20161023_2014.py | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/app/daily/migrations/0010_auto_20161023_2014.py b/app/daily/migrations/0010_auto_20161023_2014.py new file mode 100644 index 0000000..72a68cf --- /dev/null +++ b/app/daily/migrations/0010_auto_20161023_2014.py @@ -0,0 +1,19 @@ +# -*- coding: utf-8 -*- +# Generated by Django 1.9 on 2016-10-23 20:14 +from __future__ import unicode_literals + +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('daily', '0009_remove_daily_title'), + ] + + operations = [ + migrations.AlterModelOptions( + name='daily', + options={'get_latest_by': 'date', 'ordering': ('-date',)}, + ), + ] |