aboutsummaryrefslogtreecommitdiffstats
path: root/ctrack/register/migrations/0004_auto_20201002_1516.py
diff options
context:
space:
mode:
authorMatthew Lemon <lemon@matthewlemon.com>2020-10-14 17:08:54 +0100
committerMatthew Lemon <lemon@matthewlemon.com>2020-10-14 17:08:54 +0100
commitbdcc5d9d79f355eac6c2717b0b364b847b9a8115 (patch)
treefded47125bf031632db498a937225c64e841a56c /ctrack/register/migrations/0004_auto_20201002_1516.py
parent14fa59eee9ba35ad462b5b17229a09164f5d716d (diff)
reset a lot of migrations - all unit tests passing - now has response required fields for simple event
Diffstat (limited to '')
-rw-r--r--ctrack/register/migrations/0004_auto_20201002_1516.py28
1 files changed, 0 insertions, 28 deletions
diff --git a/ctrack/register/migrations/0004_auto_20201002_1516.py b/ctrack/register/migrations/0004_auto_20201002_1516.py
deleted file mode 100644
index 206cf9b..0000000
--- a/ctrack/register/migrations/0004_auto_20201002_1516.py
+++ /dev/null
@@ -1,28 +0,0 @@
-# Generated by Django 2.2.12 on 2020-10-02 15:16
-
-from django.db import migrations, models
-
-
-class Migration(migrations.Migration):
-
- dependencies = [
- ('register', '0003_auto_20201001_1036'),
- ]
-
- operations = [
- migrations.AlterField(
- model_name='engagementevent',
- name='document_link',
- field=models.URLField(blank=True, help_text='URL only - do not try to drag a file here.', max_length=1000, null=True),
- ),
- migrations.AlterField(
- model_name='engagementevent',
- name='end_date',
- field=models.DateTimeField(blank=True, help_text='Should be used for periodic events.', null=True),
- ),
- migrations.AlterField(
- model_name='engagementtype',
- name='descriptor',
- field=models.CharField(max_length=100),
- ),
- ]