diff options
Diffstat (limited to 'ctrack/register/migrations')
-rw-r--r-- | ctrack/register/migrations/0004_engagementevent_comments.py | 19 | ||||
-rw-r--r-- | ctrack/register/migrations/0005_auto_20200303_0909.py | 18 |
2 files changed, 37 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, + ), + ] 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), + ), + ] |