]> gitweb.fperrin.net Git - djsite.git/blobdiff - quotes/migrations/0006_auto_20161031_0055.py
Use django-tagging for tags
[djsite.git] / quotes / migrations / 0006_auto_20161031_0055.py
diff --git a/quotes/migrations/0006_auto_20161031_0055.py b/quotes/migrations/0006_auto_20161031_0055.py
new file mode 100644 (file)
index 0000000..047eed7
--- /dev/null
@@ -0,0 +1,25 @@
+# -*- coding: utf-8 -*-
+# Generated by Django 1.10.2 on 2016-10-31 00:55
+from __future__ import unicode_literals
+
+from django.db import migrations
+import quotes.localmodels
+
+
+class Migration(migrations.Migration):
+
+    dependencies = [
+        ('quotes', '0005_auto_20161031_0052'),
+    ]
+
+    operations = [
+        migrations.RemoveField(
+            model_name='author',
+            name='tags',
+        ),
+        migrations.AddField(
+            model_name='author',
+            name='tag',
+            field=quotes.localmodels.TagField(blank=True, max_length=255),
+        ),
+    ]