aboutsummaryrefslogtreecommitdiffstats
path: root/ctrack/register/migrations/0005_auto_20200303_0909.py
diff options
context:
space:
mode:
authorMatthew Lemon <matt@matthewlemon.com>2020-03-03 09:13:41 +0000
committerMatthew Lemon <matt@matthewlemon.com>2020-03-03 09:13:41 +0000
commitf3b1b1cea0cce4794cefc421f2c9b0976423b0b6 (patch)
tree9b4f6a4c8cff9cc80a21970db7b154fca88bdb48 /ctrack/register/migrations/0005_auto_20200303_0909.py
parentc7f9b3340944f58077747fcbd54ac721fd4cfc58 (diff)
some tidying
Diffstat (limited to 'ctrack/register/migrations/0005_auto_20200303_0909.py')
-rw-r--r--ctrack/register/migrations/0005_auto_20200303_0909.py18
1 files changed, 18 insertions, 0 deletions
diff --git a/ctrack/register/migrations/0005_auto_20200303_0909.py b/ctrack/register/migrations/0005_auto_20200303_0909.py
new file mode 100644
index 0000000..94551a5
--- /dev/null
+++ b/ctrack/register/migrations/0005_auto_20200303_0909.py
@@ -0,0 +1,18 @@
+# Generated by Django 2.2.9 on 2020-03-03 09:09
+
+from django.db import migrations, models
+
+
+class Migration(migrations.Migration):
+
+ dependencies = [
+ ('register', '0004_engagementevent_comments'),
+ ]
+
+ operations = [
+ migrations.AlterField(
+ model_name='engagementevent',
+ name='comments',
+ field=models.TextField(blank=True, max_length=1000, null=True),
+ ),
+ ]