aboutsummaryrefslogtreecommitdiffstats
path: root/ctrack/register/migrations/0004_engagementevent_comments.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/0004_engagementevent_comments.py
parentc7f9b3340944f58077747fcbd54ac721fd4cfc58 (diff)
some tidying
Diffstat (limited to 'ctrack/register/migrations/0004_engagementevent_comments.py')
-rw-r--r--ctrack/register/migrations/0004_engagementevent_comments.py19
1 files changed, 19 insertions, 0 deletions
diff --git a/ctrack/register/migrations/0004_engagementevent_comments.py b/ctrack/register/migrations/0004_engagementevent_comments.py
new file mode 100644
index 0000000..3379b03
--- /dev/null
+++ b/ctrack/register/migrations/0004_engagementevent_comments.py
@@ -0,0 +1,19 @@
+# Generated by Django 2.2.9 on 2020-03-03 09:06
+
+from django.db import migrations, models
+
+
+class Migration(migrations.Migration):
+
+ dependencies = [
+ ('register', '0003_engagementevent_short_description'),
+ ]
+
+ operations = [
+ migrations.AddField(
+ model_name='engagementevent',
+ name='comments',
+ field=models.TextField(default='No comment', max_length=1000),
+ preserve_default=False,
+ ),
+ ]