Skip to content

Commit

Permalink
prefix cases
Browse files Browse the repository at this point in the history
  • Loading branch information
MrStonedOne committed Mar 16, 2019
1 parent 186f6c8 commit 0e2cb84
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions SQL/tgstation_schema_prefixed.sql
Original file line number Diff line number Diff line change
Expand Up @@ -477,10 +477,10 @@ CREATE TABLE `SS13_stickyban` (
) ENGINE=InnoDB;

--
-- Table structure for table `ss13_stickyban_matched_ckey`
-- Table structure for table `SS13_stickyban_matched_ckey`
--
DROP TABLE IF EXISTS `ss13_stickyban_matched_ckey`;
CREATE TABLE `ss13_stickyban_matched_ckey` (
DROP TABLE IF EXISTS `SS13_stickyban_matched_ckey`;
CREATE TABLE `SS13_stickyban_matched_ckey` (
`stickyban` VARCHAR(32) NOT NULL,
`matched_ckey` VARCHAR(32) NOT NULL,
`first_matched` DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP,
Expand All @@ -490,10 +490,10 @@ CREATE TABLE `ss13_stickyban_matched_ckey` (
) ENGINE=InnoDB;

--
-- Table structure for table `ss13_stickyban_matched_ip`
-- Table structure for table `SS13_stickyban_matched_ip`
--
DROP TABLE IF EXISTS `ss13_stickyban_matched_ip`;
CREATE TABLE `ss13_stickyban_matched_ip` (
DROP TABLE IF EXISTS `SS13_stickyban_matched_ip`;
CREATE TABLE `SS13_stickyban_matched_ip` (
`stickyban` VARCHAR(32) NOT NULL,
`matched_ip` INT UNSIGNED NOT NULL,
`first_matched` DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP,
Expand All @@ -502,10 +502,10 @@ CREATE TABLE `ss13_stickyban_matched_ip` (
) ENGINE=InnoDB;

--
-- Table structure for table `ss13_stickyban_matched_cid`
-- Table structure for table `SS13_stickyban_matched_cid`
--
DROP TABLE IF EXISTS `ss13_stickyban_matched_cid`;
CREATE TABLE `ss13_stickyban_matched_cid` (
DROP TABLE IF EXISTS `SS13_stickyban_matched_cid`;
CREATE TABLE `SS13_stickyban_matched_cid` (
`stickyban` VARCHAR(32) NOT NULL,
`matched_cid` VARCHAR(32) NOT NULL,
`first_matched` DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP,
Expand Down

0 comments on commit 0e2cb84

Please sign in to comment.