mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-01-04 14:42:56 +00:00
Adds a round notify system
This commit is contained in:
@@ -521,3 +521,17 @@ CREATE TABLE `memo` (
|
||||
PRIMARY KEY (`ckey`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
|
||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||
|
||||
--
|
||||
-- Table structure for table `discord`
|
||||
--
|
||||
DROP TABLE IF EXISTS `discord`;
|
||||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||||
/*!40101 SET character_set_client = utf8 */;
|
||||
CREATE TABLE IF NOT EXISTS `discord` (
|
||||
`ckey` varchar(32) NOT NULL,
|
||||
`discord_id` bigint(20) NOT NULL,
|
||||
`notify` int(11) NOT NULL,
|
||||
PRIMARY KEY (`ckey`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
|
||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||
|
||||
@@ -520,3 +520,17 @@ CREATE TABLE `SS13_memo` (
|
||||
PRIMARY KEY (`ckey`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
|
||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||
|
||||
--
|
||||
-- Table structure for table `SS13_discord`
|
||||
--
|
||||
DROP TABLE IF EXISTS `SS13_discord`;
|
||||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||||
/*!40101 SET character_set_client = utf8 */;
|
||||
CREATE TABLE IF NOT EXISTS `SS13_discord` (
|
||||
`ckey` varchar(32) NOT NULL,
|
||||
`discord_id` bigint(20) NOT NULL,
|
||||
`notify` int(11) NOT NULL,
|
||||
PRIMARY KEY (`ckey`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
|
||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||
|
||||
9
SQL/updates/4-5.sql
Normal file
9
SQL/updates/4-5.sql
Normal file
@@ -0,0 +1,9 @@
|
||||
#Updating the SQL from version 4 to version 5. -AffectedArc07
|
||||
#Creating a table to track discord IDs for round notifying
|
||||
DROP TABLE IF EXISTS `discord`;
|
||||
CREATE TABLE IF NOT EXISTS `discord` (
|
||||
`ckey` varchar(32) NOT NULL,
|
||||
`discord_id` bigint(20) NOT NULL,
|
||||
`notify` int(11) NOT NULL,
|
||||
PRIMARY KEY (`ckey`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
|
||||
Reference in New Issue
Block a user