mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2025-12-10 09:42:29 +00:00
* Initial commit, not even half-done yet * A second commit as I stumble towards a working solution * Theeere we go, another step , I suppose * fixes and one prompt per player * yaya * a * okaaay, a step further * not done yet but soon * Theeere we go... * feeex * no interact till ss done * Update maturity_subsystem.dm * Okay, maybe it works now * Ready for tests * At last... now to test with a db. * oh well, it's not like it needs to be the first one to init * undoes the changelog clusterfuck * now undoes it for real * autoformatter-b-gone * okay we don't want it on by default * Well, it is ambiguous now that I look at it. * Okay, now it should work 95% * Oh well * This should be straight up faster * y u no auto tick --------- Co-authored-by: Gandalf <9026500+Gandalf2k15@users.noreply.github.com>
99 lines
3.5 KiB
SQL
99 lines
3.5 KiB
SQL
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
|
|
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
|
|
/*!40101 SET NAMES utf8 */;
|
|
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
|
|
/*!40103 SET TIME_ZONE='+00:00' */;
|
|
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
|
|
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
|
|
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
|
|
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
|
|
|
|
|
|
|
|
--
|
|
-- Table structure for table `player_dob`.
|
|
--
|
|
DROP TABLE IF EXISTS `player_dob`;
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
/*!40101 SET character_set_client = utf8 */;
|
|
CREATE TABLE `player_dob` (
|
|
`ckey` VARCHAR(32) NOT NULL,
|
|
`dob_year` smallint(5) NOT NULL,
|
|
`dob_month` smallint(5) NOT NULL,
|
|
PRIMARY KEY (`ckey`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
|
|
|
--
|
|
-- Table structure for table `player_rank`.
|
|
--
|
|
DROP TABLE IF EXISTS `player_rank`;
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
/*!40101 SET character_set_client = utf8 */;
|
|
CREATE TABLE `player_rank` (
|
|
`ckey` VARCHAR(32) NOT NULL,
|
|
`rank` VARCHAR(12) NOT NULL,
|
|
`admin_ckey` VARCHAR(32) NOT NULL,
|
|
`date_added` DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
|
`last_modified` DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
|
|
`deleted` BOOLEAN NOT NULL DEFAULT FALSE,
|
|
PRIMARY KEY (`ckey`, `rank`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
|
|
|
--
|
|
-- Table structure for table `player_rank_log`.
|
|
--
|
|
DROP TABLE IF EXISTS `player_rank_log`;
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
/*!40101 SET character_set_client = utf8 */;
|
|
CREATE TABLE `player_rank_log` (
|
|
`id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT,
|
|
`ckey` VARCHAR(32) NOT NULL,
|
|
`rank` VARCHAR(12) NOT NULL,
|
|
`admin_ckey` VARCHAR(32) NOT NULL,
|
|
`action` ENUM('ADDED', 'REMOVED') NOT NULL DEFAULT 'ADDED',
|
|
`date` DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
|
PRIMARY KEY (`id`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
|
|
|
--
|
|
-- Trigger structure for trigger `log_player_rank_additions`.
|
|
--
|
|
DROP TRIGGER IF EXISTS `log_player_rank_additions`;
|
|
CREATE TRIGGER `log_player_rank_additions`
|
|
AFTER INSERT ON `player_rank`
|
|
FOR EACH ROW
|
|
INSERT INTO player_rank_log (ckey, rank, admin_ckey, `action`) VALUES (NEW.ckey, NEW.rank, NEW.admin_ckey, 'ADDED');
|
|
|
|
|
|
--
|
|
-- Trigger structure for trigger `log_player_rank_changes`.
|
|
--
|
|
DROP TRIGGER IF EXISTS `log_player_rank_changes`;
|
|
DELIMITER //
|
|
CREATE TRIGGER `log_player_rank_changes`
|
|
AFTER UPDATE ON `player_rank`
|
|
FOR EACH ROW
|
|
BEGIN
|
|
IF NEW.deleted = 1 THEN
|
|
INSERT INTO player_rank_log (ckey, rank, admin_ckey, `action`) VALUES (NEW.ckey, NEW.rank, NEW.admin_ckey, 'REMOVED');
|
|
ELSE
|
|
INSERT INTO player_rank_log (ckey, rank, admin_ckey, `action`) VALUES (NEW.ckey, NEW.rank, NEW.admin_ckey, 'ADDED');
|
|
END IF;
|
|
END; //
|
|
DELIMITER ;
|
|
|
|
|
|
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
|
|
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
|
|
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
|
|
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
|
|
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
|
|
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
|
|
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
|