0% found this document useful (0 votes)
13 views1 page

GGCMD 5

The document describes the structure of a database table with 30 fields defining attributes like id, name, login details, permissions, timestamps and other metadata for user accounts.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
13 views1 page

GGCMD 5

The document describes the structure of a database table with 30 fields defining attributes like id, name, login details, permissions, timestamps and other metadata for user accounts.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 1

---------------------+--------------+------+-----+---------+----------------+

| Field | Type | Null | Key | Default | Extra |


+---------------------+--------------+------+-----+---------+----------------+
| id | int unsigned | NO | PRI | NULL | auto_increment |
| first_name | varchar(191) | YES | | NULL | |
| last_name | varchar(191) | YES | | NULL | |
| login | varchar(191) | NO | UNI | NULL | |
| email | varchar(191) | NO | UNI | NULL | |
| password | varchar(191) | NO | | NULL | |
| activation_code | varchar(191) | YES | MUL | NULL | |
| persist_code | varchar(191) | YES | | NULL | |
| reset_password_code | varchar(191) | YES | MUL | NULL | |
| permissions | text | YES | | NULL | |
| is_activated | tinyint(1) | NO | | 0 | |
| role_id | int unsigned | YES | MUL | NULL | |
| activated_at | timestamp | YES | | NULL | |
| last_login | timestamp | YES | | NULL | |
| created_at | timestamp | YES | | NULL | |
| updated_at | timestamp | YES | | NULL | |
| deleted_at | timestamp | YES | | NULL | |
| is_superuser | tinyint(1) | NO | | 0 | |
| user_type | int | NO | | 1 | |
| user_data | text | YES | | NULL | |
| employee_record_id | varchar(191) | YES | | NULL | |
| team_id | int | YES | | NULL | |
| designation | varchar(200) | YES | | NULL | |
| phone | varchar(200) | YES | | NULL | |
| is_admin | tinyint(1) | NO | | 0 | |
| old_id | varchar(100) | YES | | NULL | |
| old_password | varchar(200) | YES | | NULL | |
| is_sso | tinyint(1) | NO | | 0 | |
| allowed_ct | text | YES | | NULL | |
| secure_login | tinyint(1) | NO | | 0 | |
+---------------------+--------------+------+-----+---------+----------------+
30 rows in set (0.00 sec)

You might also like