mirror of
https://git.krews.org/morningstar/Arcturus-Community.git
synced 2024-11-23 15:20:52 +01:00
22 lines
1.0 KiB
SQL
22 lines
1.0 KiB
SQL
ALTER TABLE `permissions`
|
|
ADD COLUMN `auto_credits_amount` INT DEFAULT '0',
|
|
ADD COLUMN `auto_pixels_amount` INT DEFAULT '0',
|
|
ADD COLUMN `auto_gotw_amount` INT DEFAULT '0',
|
|
ADD COLUMN `auto_points_amount` INT DEFAULT '0';
|
|
|
|
INSERT INTO `emulator_settings`(`key`, `value`) VALUES ('hotel.auto.gotwpoints.enabled', '0');
|
|
INSERT INTO `emulator_settings`(`key`, `value`) VALUES ('hotel.auto.gotwpoints.interval', '600');
|
|
INSERT INTO `emulator_settings`(`key`, `value`) VALUES ('hotel.auto.gotwpoints.ignore.idled', '1');
|
|
INSERT INTO `emulator_settings`(`key`, `value`) VALUES ('hotel.auto.gotwpoints.ignore.hotelview', '1');
|
|
INSERT INTO `emulator_settings`(`key`, `value`) VALUES ('hotel.auto.gotwpoints.type', '4');
|
|
INSERT INTO `emulator_settings`(`key`, `value`) VALUES ('hotel.auto.gotwpoints.name', 'shell');
|
|
|
|
CREATE TABLE `items_highscore_data` (
|
|
`id` int(11) NOT NULL AUTO_INCREMENT,
|
|
`item_id` int(11) NOT NULL,
|
|
`user_ids` varchar(500) NOT NULL,
|
|
`score` int(11) NOT NULL,
|
|
`is_win` tinyint(1) NULL DEFAULT 0,
|
|
`timestamp` int(11) NOT NULL,
|
|
PRIMARY KEY (`id`)
|
|
); |