diff options
author | Matthew Lemon <lemon@matthewlemon.com> | 2020-05-22 16:22:30 +0100 |
---|---|---|
committer | Matthew Lemon <lemon@matthewlemon.com> | 2020-05-22 16:22:30 +0100 |
commit | 5d489ef3685b32ee5e9c68839b1e187870c0d659 (patch) | |
tree | e28d090eb217cad555d07a154e6479878bae5c64 /ctrack/users/migrations/0002_user_is_person.py | |
parent | 44959fde6494d90d644a11866d86c704a5cf5034 (diff) |
started work on optional User as organisation.Person object - tests
Diffstat (limited to '')
-rw-r--r-- | ctrack/users/migrations/0002_user_is_person.py | 18 |
1 files changed, 18 insertions, 0 deletions
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), + ), + ] |