diff options
author | Matthew Lemon <matt@matthewlemon.com> | 2020-03-03 09:13:41 +0000 |
---|---|---|
committer | Matthew Lemon <matt@matthewlemon.com> | 2020-03-03 09:13:41 +0000 |
commit | f3b1b1cea0cce4794cefc421f2c9b0976423b0b6 (patch) | |
tree | 9b4f6a4c8cff9cc80a21970db7b154fca88bdb48 /ctrack/register/migrations/0004_engagementevent_comments.py | |
parent | c7f9b3340944f58077747fcbd54ac721fd4cfc58 (diff) |
some tidying
Diffstat (limited to 'ctrack/register/migrations/0004_engagementevent_comments.py')
-rw-r--r-- | ctrack/register/migrations/0004_engagementevent_comments.py | 19 |
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, + ), + ] |