From 7b6de8f88d2673ffdd61dc8cc7f1fca754c8cf88 Mon Sep 17 00:00:00 2001 From: Matthew Lemon Date: Mon, 17 Feb 2020 20:55:54 +0000 Subject: added active, comments, updated_by fields to organisation --- .../migrations/0018_organisation_comments.py | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 ctrack/organisations/migrations/0018_organisation_comments.py (limited to 'ctrack/organisations/migrations/0018_organisation_comments.py') diff --git a/ctrack/organisations/migrations/0018_organisation_comments.py b/ctrack/organisations/migrations/0018_organisation_comments.py new file mode 100644 index 0000000..f4a29ff --- /dev/null +++ b/ctrack/organisations/migrations/0018_organisation_comments.py @@ -0,0 +1,19 @@ +# Generated by Django 2.2.9 on 2020-02-17 20:53 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('organisations', '0017_auto_20200217_2050'), + ] + + operations = [ + migrations.AddField( + model_name='organisation', + name='comments', + field=models.TextField(default='NA', max_length=500), + preserve_default=False, + ), + ] -- cgit v1.2.3