summaryrefslogtreecommitdiff
path: root/app/daily/migrations/0005_remove_daily_slug.py
diff options
context:
space:
mode:
authorluxagraf <sng@luxagraf.net>2016-01-19 14:40:24 -0500
committerluxagraf <sng@luxagraf.net>2016-01-19 14:40:24 -0500
commit7622933e291141b5d58293eacb813d0c0635695f (patch)
tree0fd8afb12c8ff2f18a353104d2fa97be9c07c6fa /app/daily/migrations/0005_remove_daily_slug.py
parent0879504bd5029b2a3b9e937cb4620c4cd3108459 (diff)
added my daily journal recording app, weather grabbing widget and
checkin model. Still need to add widget to checkin admin to automatically grab the geodata from device.
Diffstat (limited to 'app/daily/migrations/0005_remove_daily_slug.py')
-rw-r--r--app/daily/migrations/0005_remove_daily_slug.py19
1 files changed, 19 insertions, 0 deletions
diff --git a/app/daily/migrations/0005_remove_daily_slug.py b/app/daily/migrations/0005_remove_daily_slug.py
new file mode 100644
index 0000000..8a896ba
--- /dev/null
+++ b/app/daily/migrations/0005_remove_daily_slug.py
@@ -0,0 +1,19 @@
+# -*- coding: utf-8 -*-
+# Generated by Django 1.9 on 2016-01-19 13:38
+from __future__ import unicode_literals
+
+from django.db import migrations
+
+
+class Migration(migrations.Migration):
+
+ dependencies = [
+ ('daily', '0004_auto_20160119_1223'),
+ ]
+
+ operations = [
+ migrations.RemoveField(
+ model_name='daily',
+ name='slug',
+ ),
+ ]