mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2025-12-20 23:21:10 +00:00
* Condense Database Migrations Condenses the Database Migrations into a new initial schema. Also adds some instructions to the Database Readme for existing setups. * Update readme/delete changed migrations since pr creation * Reworks a bit how the previous migrations are handled and updates the instructions accordingly * Expand the readme with baseline/migrate --------- Co-authored-by: Werner <Arrow768@users.noreply.github.com>
37 lines
1.3 KiB
SQL
37 lines
1.3 KiB
SQL
--
|
|
-- Tables for holding stickyban/PRISM stuff.
|
|
--
|
|
|
|
CREATE TABLE `ss13_stickyban` (
|
|
`ckey` VARCHAR(32) NOT NULL,
|
|
`reason` VARCHAR(2048) NOT NULL,
|
|
`banning_admin` VARCHAR(32) NOT NULL,
|
|
`datetime` DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
|
PRIMARY KEY (`ckey`)
|
|
) ENGINE=InnoDB;
|
|
|
|
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,
|
|
`last_matched` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
|
|
`exempt` TINYINT(1) NOT NULL DEFAULT '0',
|
|
PRIMARY KEY (`stickyban`, `matched_ckey`)
|
|
) ENGINE=InnoDB;
|
|
|
|
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,
|
|
`last_matched` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
|
|
PRIMARY KEY (`stickyban`, `matched_ip`)
|
|
) ENGINE=InnoDB;
|
|
|
|
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,
|
|
`last_matched` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
|
|
PRIMARY KEY (`stickyban`, `matched_cid`)
|
|
) ENGINE=InnoDB;
|