forked from tgstation/tgstation
-
Notifications
You must be signed in to change notification settings - Fork 49
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
33 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
-- | ||
-- SS220 ADDITION AND EDITS | ||
-- | ||
|
||
-- | ||
-- Table structure for table `ckey_whitelist` | ||
-- | ||
DROP TABLE IF EXISTS `ckey_whitelist`; | ||
CREATE TABLE `ckey_whitelist` ( | ||
`id` INT(11) NOT NULL AUTO_INCREMENT, | ||
`date` DATETIME DEFAULT now() NOT NULL, | ||
`ckey` VARCHAR(32) NOT NULL, | ||
`adminwho` VARCHAR(32) NOT NULL, | ||
`port` INT(5) UNSIGNED NOT NULL, | ||
`date_start` DATETIME DEFAULT now() NOT NULL, | ||
`date_end` DATETIME NULL, | ||
`is_valid` BOOLEAN DEFAULT true NOT NULL, | ||
PRIMARY KEY (`id`) | ||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; | ||
|
||
-- | ||
-- Table structure for table `admin_wl` | ||
-- | ||
DROP TABLE IF EXISTS `admin_wl`; | ||
CREATE TABLE `admin_wl` ( | ||
`id` int(11) NOT NULL AUTO_INCREMENT, | ||
`ckey` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL, | ||
`admin_rank` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'Administrator', | ||
`level` int(2) NOT NULL DEFAULT '0', | ||
`flags` int(16) NOT NULL DEFAULT '0', | ||
PRIMARY KEY (`id`), | ||
KEY `ckey` (`ckey`) | ||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; |