diff options
author | Mark Wong | 2019-05-29 17:18:00 +0000 |
---|---|---|
committer | Mark Wong | 2019-05-29 17:18:00 +0000 |
commit | cc41d3dba7d11cdd589a83f1284c0a47b444b7f6 (patch) | |
tree | ff6c6799cd550c74f4159b91dd8e3ea56da6f9a2 /web/db_tools/data/user_data.py | |
parent | cf7a951b9580e6839464194547efe28757741e98 (diff) | |
parent | 9f7c200c61ae0d8c44155404d21fb7f286ace32b (diff) |
Diffstat (limited to 'web/db_tools/data/user_data.py')
-rw-r--r-- | web/db_tools/data/user_data.py | 16 |
1 files changed, 14 insertions, 2 deletions
diff --git a/web/db_tools/data/user_data.py b/web/db_tools/data/user_data.py index aa4f3f6..0ad938f 100644 --- a/web/db_tools/data/user_data.py +++ b/web/db_tools/data/user_data.py @@ -1,14 +1,26 @@ row_data = [ { 'password': '123456', - 'is_superuser': False, + 'is_superuser': True, 'username': 'maleic', 'first_name': 'Maleic', 'last_name': 'Acid', - 'date_joined': '2018-06-14 21:34:51+08', + 'date_joined': '2018-08-10 21:34:51+08', 'email': '[email protected]', 'is_staff': False, 'is_active': True, 'last_login': '2018-06-14 21:34:51+08', }, + { + 'password': '123456', + 'is_superuser': True, + 'username': 'mark', + 'first_name': 'Mark', + 'last_name': 'Wong', + 'date_joined': '2018-08-10 21:34:51+08', + 'email': '[email protected]', + 'is_staff': False, + 'is_active': True, + 'last_login': '2018-06-14 21:34:51+08', + }, ]
\ No newline at end of file |