Advertisement
poxipox

Untitled

Mar 25th, 2023
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.93 KB | None | 0 0
  1.  
  2. CREATE TABLE `groups` (
  3. `id` int(11) NOT NULL,
  4. `name` varchar(255) NOT NULL COMMENT 'group name',
  5. `flags` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
  6. `customflags` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
  7. `access` int(11) NOT NULL,
  8. `violationaccess` int(11) NOT NULL,
  9. `maxdepotitems` int(11) NOT NULL,
  10. `maxviplist` int(11) NOT NULL,
  11. `outfit` int(11) NOT NULL DEFAULT 0
  12. ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
  13.  
  14. --
  15. -- Zrzut danych tabeli `groups`
  16. --
  17.  
  18. INSERT INTO `groups` (`id`, `name`, `flags`, `customflags`, `access`, `violationaccess`, `maxdepotitems`, `maxviplist`, `outfit`) VALUES
  19. (1, 'Player', 0, 0, 0, 0, 0, 0, 0),
  20. (2, 'Tutor', 16809984, 524291, 1, 0, 0, 0, 0),
  21. (3, 'Senior Tutor', 68736352256, 524303, 2, 1, 0, 0, 0),
  22. (4, 'Gamemaster', 510024081247, 4189375, 3, 3, 4000, 200, 75),
  23. (5, 'Community Manager', 542239465466, 4189695, 4, 4, 6000, 300, 266),
  24. (6, 'God', 546534563834, 4194303, 5, 4, 8000, 400, 302);
  25.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement