From bd4b2e176a59ab7df4c17e1d795eabcf37960105 Mon Sep 17 00:00:00 2001 From: "Brian S. Stephan" Date: Thu, 21 May 2015 22:04:57 -0500 Subject: [PATCH] pi: meta options on PiLog --- .../pi/migrations/0002_auto_20150521_2204.py | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 dr_botzo/pi/migrations/0002_auto_20150521_2204.py diff --git a/dr_botzo/pi/migrations/0002_auto_20150521_2204.py b/dr_botzo/pi/migrations/0002_auto_20150521_2204.py new file mode 100644 index 0000000..c225980 --- /dev/null +++ b/dr_botzo/pi/migrations/0002_auto_20150521_2204.py @@ -0,0 +1,18 @@ +# -*- coding: utf-8 -*- +from __future__ import unicode_literals + +from django.db import models, migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('pi', '0001_initial'), + ] + + operations = [ + migrations.AlterModelOptions( + name='pilog', + options={'get_latest_by': 'created'}, + ), + ]