summaryrefslogtreecommitdiff
path: root/app/photos/migrations
diff options
context:
space:
mode:
Diffstat (limited to 'app/photos/migrations')
-rw-r--r--app/photos/migrations/0002_auto_20151216_1958.py26
-rw-r--r--app/photos/migrations/0003_luxgallery_caption_style.py20
2 files changed, 46 insertions, 0 deletions
diff --git a/app/photos/migrations/0002_auto_20151216_1958.py b/app/photos/migrations/0002_auto_20151216_1958.py
new file mode 100644
index 0000000..2a2bffb
--- /dev/null
+++ b/app/photos/migrations/0002_auto_20151216_1958.py
@@ -0,0 +1,26 @@
+# -*- coding: utf-8 -*-
+# Generated by Django 1.9 on 2015-12-16 19:58
+from __future__ import unicode_literals
+
+from django.db import migrations, models
+import django.db.models.deletion
+
+
+class Migration(migrations.Migration):
+
+ dependencies = [
+ ('photos', '0001_initial'),
+ ]
+
+ operations = [
+ migrations.RenameField(
+ model_name='luxgallery',
+ old_name='image',
+ new_name='images',
+ ),
+ migrations.AlterField(
+ model_name='luxgallery',
+ name='thumb',
+ field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, related_name='gallery_thumb', to='photos.LuxImage'),
+ ),
+ ]
diff --git a/app/photos/migrations/0003_luxgallery_caption_style.py b/app/photos/migrations/0003_luxgallery_caption_style.py
new file mode 100644
index 0000000..b46f970
--- /dev/null
+++ b/app/photos/migrations/0003_luxgallery_caption_style.py
@@ -0,0 +1,20 @@
+# -*- coding: utf-8 -*-
+# Generated by Django 1.9 on 2015-12-17 11:01
+from __future__ import unicode_literals
+
+from django.db import migrations, models
+
+
+class Migration(migrations.Migration):
+
+ dependencies = [
+ ('photos', '0002_auto_20151216_1958'),
+ ]
+
+ operations = [
+ migrations.AddField(
+ model_name='luxgallery',
+ name='caption_style',
+ field=models.CharField(blank=True, max_length=400, null=True),
+ ),
+ ]