mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-07-12 23:53:47 +01:00
@@ -314,56 +314,6 @@ CREATE TABLE `privacy` (
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
|
||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||
|
||||
--
|
||||
-- Table structure for table `karma_log`
|
||||
--
|
||||
|
||||
DROP TABLE IF EXISTS `karma_log`;
|
||||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||||
/*!40101 SET character_set_client = utf8 */;
|
||||
CREATE TABLE `karma_log` (
|
||||
`id` int(11) NOT NULL AUTO_INCREMENT,
|
||||
`spendername` text NOT NULL,
|
||||
`spenderkey` text NOT NULL,
|
||||
`receivername` text NOT NULL,
|
||||
`receiverkey` text NOT NULL,
|
||||
`receiverrole` text,
|
||||
`receiverspecial` text,
|
||||
`isnegative` tinyint(1) DEFAULT NULL,
|
||||
`spenderip` text NOT NULL,
|
||||
`server_id` TEXT NULL DEFAULT NULL,
|
||||
`time` datetime NOT NULL,
|
||||
PRIMARY KEY (`id`)
|
||||
) ENGINE=InnoDB AUTO_INCREMENT=73614 DEFAULT CHARSET=utf8mb4;
|
||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||
|
||||
--
|
||||
-- Table structure for table `karma_totals`
|
||||
--
|
||||
|
||||
DROP TABLE IF EXISTS `karma_totals`;
|
||||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||||
/*!40101 SET character_set_client = utf8 */;
|
||||
CREATE TABLE `karma_totals` (
|
||||
`id` int(11) NOT NULL AUTO_INCREMENT,
|
||||
`byondkey` varchar(30) COLLATE utf8mb4_unicode_ci NOT NULL,
|
||||
`karma` int(11) NOT NULL,
|
||||
`karmaspent` int(11) NOT NULL DEFAULT 0,
|
||||
PRIMARY KEY (`id`),
|
||||
KEY `byondkey` (`byondkey`)
|
||||
) ENGINE=InnoDB AUTO_INCREMENT=25715 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
|
||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||
|
||||
DROP TABLE IF EXISTS `karma_purchases`;
|
||||
CREATE TABLE `karma_purchases` (
|
||||
`id` INT(11) NOT NULL AUTO_INCREMENT,
|
||||
`ckey` VARCHAR(32) NOT NULL COLLATE 'utf8_general_ci',
|
||||
`purchase` VARCHAR(64) NOT NULL COLLATE 'utf8_general_ci',
|
||||
`purchase_time` DATETIME NOT NULL DEFAULT current_timestamp(),
|
||||
PRIMARY KEY (`id`) USING BTREE,
|
||||
UNIQUE INDEX `ckey` (`ckey`, `purchase`) USING BTREE
|
||||
) COLLATE='utf8_general_ci' ENGINE=InnoDB;
|
||||
|
||||
--
|
||||
-- Table structure for table `library`
|
||||
--
|
||||
|
||||
@@ -0,0 +1,5 @@
|
||||
# Updating SQL from 46 to 47 -AffectedArc07
|
||||
# Guts Karma
|
||||
DROP TABLE `karma_log`;
|
||||
DROP TABLE `karma_purchases`;
|
||||
DROP TABLE `karma_totals`;
|
||||
Reference in New Issue
Block a user