diff options
author | Philip Sargent <philip.sargent@klebos.com> | 2020-06-20 15:43:28 +0100 |
---|---|---|
committer | Philip Sargent <philip.sargent@klebos.com> | 2020-06-20 16:51:07 +0100 |
commit | e697466557b7ec370a0bd424a33b84074e41d564 (patch) | |
tree | 37bf6f095ccf281fb864a4a7947f21a36c315894 /core/migrations | |
parent | b35a0b0d26303e61e20b320db9358ae425c49933 (diff) | |
download | troggle-e697466557b7ec370a0bd424a33b84074e41d564.tar.gz troggle-e697466557b7ec370a0bd424a33b84074e41d564.tar.bz2 troggle-e697466557b7ec370a0bd424a33b84074e41d564.zip |
Cleanup secrets management, pre-run checks.
Diffstat (limited to 'core/migrations')
-rw-r--r-- | core/migrations/0001_initial.py | 4 | ||||
-rw-r--r-- | core/migrations/0002_auto_20200619_1511.py | 20 | ||||
-rw-r--r-- | core/migrations/0003_auto_20200619_1513.py | 20 |
3 files changed, 2 insertions, 42 deletions
diff --git a/core/migrations/0001_initial.py b/core/migrations/0001_initial.py index ef8737e..1bc96d1 100644 --- a/core/migrations/0001_initial.py +++ b/core/migrations/0001_initial.py @@ -1,5 +1,5 @@ # -*- coding: utf-8 -*- -# Generated by Django 1.9.13 on 2020-06-16 23:22 +# Generated by Django 1.11.29 on 2020-06-20 14:27 from __future__ import unicode_literals from django.conf import settings @@ -185,7 +185,7 @@ class Migration(migrations.Migration): ('non_public', models.BooleanField(default=False)), ('date', models.DateField()), ('title', models.CharField(max_length=200)), - ('cave_slug', models.SlugField()), + ('cave_slug', models.SlugField(blank=True, null=True)), ('place', models.CharField(blank=True, help_text="Only use this if you haven't chosen a cave", max_length=100, null=True)), ('text', models.TextField()), ('slug', models.SlugField()), diff --git a/core/migrations/0002_auto_20200619_1511.py b/core/migrations/0002_auto_20200619_1511.py deleted file mode 100644 index ef84c1c..0000000 --- a/core/migrations/0002_auto_20200619_1511.py +++ /dev/null @@ -1,20 +0,0 @@ -# -*- 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 deleted file mode 100644 index e12f2a2..0000000 --- a/core/migrations/0003_auto_20200619_1513.py +++ /dev/null @@ -1,20 +0,0 @@ -# -*- 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), - ), - ] |