diff options
author | Philip Sargent <philip.sargent@klebos.com> | 2020-06-19 16:39:05 +0100 |
---|---|---|
committer | Philip Sargent <philip.sargent@klebos.com> | 2020-06-19 16:39:05 +0100 |
commit | b35a0b0d26303e61e20b320db9358ae425c49933 (patch) | |
tree | b241e1ea5747ed44aeef106b35b36a2685326e42 /core/migrations | |
parent | 2c469718f60a11c0038ec15fb186eac275509b8b (diff) | |
download | troggle-b35a0b0d26303e61e20b320db9358ae425c49933.tar.gz troggle-b35a0b0d26303e61e20b320db9358ae425c49933.tar.bz2 troggle-b35a0b0d26303e61e20b320db9358ae425c49933.zip |
Fully working dj 1.11.29
Diffstat (limited to 'core/migrations')
-rw-r--r-- | core/migrations/0002_auto_20200619_1511.py | 20 | ||||
-rw-r--r-- | core/migrations/0003_auto_20200619_1513.py | 20 |
2 files changed, 40 insertions, 0 deletions
diff --git a/core/migrations/0002_auto_20200619_1511.py b/core/migrations/0002_auto_20200619_1511.py new file mode 100644 index 0000000..ef84c1c --- /dev/null +++ b/core/migrations/0002_auto_20200619_1511.py @@ -0,0 +1,20 @@ +# -*- coding: utf-8 -*- +# Generated by Django 1.11.29 on 2020-06-19 14:11 +from __future__ import unicode_literals + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('core', '0001_initial'), + ] + + operations = [ + migrations.AlterField( + model_name='logbookentry', + name='cave_slug', + field=models.SlugField(blank=True), + ), + ] diff --git a/core/migrations/0003_auto_20200619_1513.py b/core/migrations/0003_auto_20200619_1513.py new file mode 100644 index 0000000..e12f2a2 --- /dev/null +++ b/core/migrations/0003_auto_20200619_1513.py @@ -0,0 +1,20 @@ +# -*- coding: utf-8 -*- +# Generated by Django 1.11.29 on 2020-06-19 14:13 +from __future__ import unicode_literals + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('core', '0002_auto_20200619_1511'), + ] + + operations = [ + migrations.AlterField( + model_name='logbookentry', + name='cave_slug', + field=models.SlugField(blank=True, null=True), + ), + ] |