From 5d489ef3685b32ee5e9c68839b1e187870c0d659 Mon Sep 17 00:00:00 2001 From: Matthew Lemon Date: Fri, 22 May 2020 16:22:30 +0100 Subject: started work on optional User as organisation.Person object - tests --- ctrack/users/migrations/0002_user_is_person.py | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 ctrack/users/migrations/0002_user_is_person.py (limited to 'ctrack/users/migrations/0002_user_is_person.py') diff --git a/ctrack/users/migrations/0002_user_is_person.py b/ctrack/users/migrations/0002_user_is_person.py new file mode 100644 index 0000000..2223429 --- /dev/null +++ b/ctrack/users/migrations/0002_user_is_person.py @@ -0,0 +1,18 @@ +# Generated by Django 3.0.5 on 2020-05-22 15:19 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('users', '0001_initial'), + ] + + operations = [ + migrations.AddField( + model_name='user', + name='is_person', + field=models.BooleanField(default=False), + ), + ] -- cgit v1.2.3