mirror of
https://git.krews.org/morningstar/Arcturus-Community.git
synced 2025-02-07 15:12:35 +01:00
14 lines
647 B
SQL
14 lines
647 B
SQL
#DATABASE UPDATE: 2.0.0 RC-2 -> 2.0.0 RC-3
|
|
|
|
INSERT INTO `emulator_settings` (`key`, `value`) VALUES ('commands.plugins.oldstyle', '0');
|
|
|
|
ALTER TABLE `emulator_errors`
|
|
ADD COLUMN `version` varchar(64) NOT NULL AFTER `timestamp`,
|
|
ADD COLUMN `build_hash` varchar(64) NOT NULL AFTER `version`;
|
|
|
|
INSERT INTO `emulator_settings`(`key`, `value`) VALUES ('scripter.modtool.tickets', '1');
|
|
|
|
INSERT INTO `emulator_settings`(`key`, `value`) VALUES ('invisible.prevent.chat', '0');
|
|
INSERT INTO `emulator_texts`(`key`, `value`) VALUES ('invisible.prevent.chat.error', 'While being invisible you cannot talk.');
|
|
|
|
#END DATABASE UPDATE: 2.0.0 RC-2 -> 2.0.0 RC-3 |