mirror of
https://git.krews.org/morningstar/Arcturus-Community.git
synced 2024-12-02 10:50:51 +01:00
5e836977f9
# Conflicts: # sqlupdates/2_0_0-RC-2_TO_2_0_0-RC-3.sql
21 lines
1012 B
SQL
21 lines
1012 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');
|
|
|
|
ALTER TABLE `items_crackable`
|
|
ADD COLUMN `subscription_duration` int(3) NULL AFTER `required_effect`,
|
|
ADD COLUMN `subscription_type` varchar(255) NULL COMMENT 'hc for Habbo Club, bc for Builders Club' AFTER `subscription_duration`;
|
|
|
|
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.');
|
|
|
|
INSERT INTO `emulator_texts`(`key`, `value`) VALUES ('commands.succes.cmd_invisible.updated.back', 'You are now visible again.');
|
|
|
|
#END DATABASE UPDATE: 2.0.0 RC-2 -> 2.0.0 RC-3
|