summaryrefslogtreecommitdiff
path: root/web/db_tools/data/user_data.py
blob: 0ad938f8053f308c9eff862f7b315f943ed6823f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
row_data = [
    {
        'password': '123456',
        'is_superuser': True,
        'username': 'maleic',
        'first_name': 'Maleic',
        'last_name': 'Acid',
        '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',
    },
]