This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Table users { | |
user_id integer [pk, increment] | |
username varchar [not null, unique] | |
email varchar [not null, unique] | |
password varchar [not null] | |
name varchar [not null] | |
role varchar [not null] | |
gender varchar(10) [not null] |