diff options
author | 2018-11-25 11:16:57 +0100 | |
---|---|---|
committer | 2018-11-25 11:16:57 +0100 | |
commit | 87a48cad5197234a6ccff616fec17a027b2adcb8 (patch) | |
tree | 0ea7bebddf9ce216e94602ddeca300184729fb00 /api/migrations/0018_user_rename.py | |
parent | Use proper attribute name. (diff) | |
parent | Set up image pushing and building on Azure. (#152) (diff) |
Merge branch 'django' into django+add-logs-api.
Diffstat (limited to 'api/migrations/0018_user_rename.py')
-rw-r--r-- | api/migrations/0018_user_rename.py | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/api/migrations/0018_user_rename.py b/api/migrations/0018_user_rename.py new file mode 100644 index 00000000..f88eb5bc --- /dev/null +++ b/api/migrations/0018_user_rename.py @@ -0,0 +1,17 @@ +# Generated by Django 2.1.3 on 2018-11-19 20:09 + +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('api', '0017_auto_20181029_1921'), + ] + + operations = [ + migrations.RenameModel( + old_name='Member', + new_name='User', + ), + ] |