Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- CREATE TABLE users(
- `usersId` int(11) unsigned PRIMARY KEY AUTO_INCREMENT NOT NULL,
- `usersUid` varchar(128) NOT NULL,
- `usersPwd` varchar(128) NOT NULL,
- `usersTime` int(11) unsigned,
- `usersCooldown` int(11) DEFAULT NULL,
- `usersAccess` int(11) unsigned DEFAULT NULL,
- `usersExpiry` int(11) unsigned NOT NULL,
- `userIsRoot` int(11) unsigned DEFAULT NULL
- );
Advertisement
Add Comment
Please, Sign In to add comment