From f3b1b1cea0cce4794cefc421f2c9b0976423b0b6 Mon Sep 17 00:00:00 2001 From: Matthew Lemon Date: Tue, 3 Mar 2020 09:13:41 +0000 Subject: some tidying --- .../migrations/0004_engagementevent_comments.py | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 ctrack/register/migrations/0004_engagementevent_comments.py (limited to 'ctrack/register/migrations/0004_engagementevent_comments.py') 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, + ), + ] -- cgit v1.2.3