mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2025-12-19 06:41:37 +00:00
11 lines
361 B
SQL
11 lines
361 B
SQL
#Updating the SQL from version 2 to version 3. -alffd
|
|
#Droping privacy table and recreating for terms of service tracking
|
|
DROP TABLE `privacy`;
|
|
CREATE TABLE `privacy` (
|
|
`ckey` varchar(32) NOT NULL,
|
|
`datetime` datetime NOT NULL,
|
|
`consent` bit(1) NOT NULL,
|
|
PRIMARY KEY (`ckey`),
|
|
UNIQUE KEY `ckey_UNIQUE` (`ckey`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
|