aboutsummaryrefslogtreecommitdiffstats
path: root/api/migrations/0018_user_rename.py
diff options
context:
space:
mode:
authorGravatar Mark <[email protected]>2018-11-19 13:17:36 -0800
committerGravatar Johannes Christ <[email protected]>2018-11-19 22:17:36 +0100
commitc58f5c749ae1f4a411dd4cc9a8395dedddf93027 (patch)
tree73d3b2e2756e4c93e49760c34e2d2771d39374c4 /api/migrations/0018_user_rename.py
parentSet up markdown & Dockerfile lints. (diff)
Django - Add Support for Storing Users Not in Guild (#150)
* rename Member to User * add boolean field to distinguish users in our server * mark roles as not required * fix import order lint errors * fix order of model registration
Diffstat (limited to 'api/migrations/0018_user_rename.py')
-rw-r--r--api/migrations/0018_user_rename.py17
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',
+ ),
+ ]