[extensions-web/django/upgrade-1.8] django-autoslug: added missing migration
- From: Yuri Konotopov <ykonotopov src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [extensions-web/django/upgrade-1.8] django-autoslug: added missing migration
- Date: Thu, 27 Oct 2016 16:45:52 +0000 (UTC)
commit 706e13c364c5f29d8cfe5b845b30e7e35573a5ae
Author: Yuri Konotopov <ykonotopov gnome org>
Date: Thu Oct 27 19:43:18 2016 +0300
django-autoslug: added missing migration
.../migrations/0002_auto_20161027_1641.py | 20 ++++++++++++++++++++
1 files changed, 20 insertions(+), 0 deletions(-)
---
diff --git a/sweettooth/extensions/migrations/0002_auto_20161027_1641.py
b/sweettooth/extensions/migrations/0002_auto_20161027_1641.py
new file mode 100644
index 0000000..83194a9
--- /dev/null
+++ b/sweettooth/extensions/migrations/0002_auto_20161027_1641.py
@@ -0,0 +1,20 @@
+# -*- coding: utf-8 -*-
+from __future__ import unicode_literals
+
+from django.db import migrations, models
+import autoslug.fields
+
+
+class Migration(migrations.Migration):
+
+ dependencies = [
+ ('extensions', '0001_initial'),
+ ]
+
+ operations = [
+ migrations.AlterField(
+ model_name='extension',
+ name='slug',
+ field=autoslug.fields.AutoSlugField(populate_from=b'name', editable=False),
+ ),
+ ]
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]