PasteSite is open to the public, but with limited features. Register to be able to modify access rights, track your pastes and more...
If you prefer reading light text on a dark background to dark text on a light background, then you might want to try the dark theme.
"Untitled" by Anonymous [SQL]Actions: |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
create table users ( id SMALLINT NOT NULL AUTO_INCREMENT, username VARCHAR(40) NOT NULL, password VARCHAR(64) NOT NULL, group TINYINT(1) NOT NULL DEFAULT '0', first_name VARCHAR (30), last_name(50), team_id TINYINT, registration_time INT(10) NOT NULL UNSIGNED, INDEX (id), INDEX (username), PRIMARY KEY (id) ) ENGINE=INNODB; |