Adds a round notify system

This commit is contained in:
AffectedArc07
2019-01-26 21:23:10 +00:00
parent 693eae879a
commit 3b75eaaba3
9 changed files with 152 additions and 3 deletions
+9
View 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;