mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2025-12-19 14:51:27 +00:00
10 lines
351 B
SQL
10 lines
351 B
SQL
#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;
|