mirror of
https://git.krews.org/morningstar/Arcturus-Community.git
synced 2024-11-22 23:10:52 +01:00
9 lines
564 B
SQL
9 lines
564 B
SQL
#DATABASE UPDATE: 1.0.2 -> 1.0.3
|
|
|
|
INSERT INTO `emulator_texts` (`key`, `value`) VALUES ('commands.succes.cmd_bundle', 'Roombundle succesfully created with page id %id%');
|
|
ALTER TABLE `users_settings` CHANGE `can_trade` `can_trade` ENUM( '0', '1' ) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL DEFAULT '1';
|
|
UPDATE `users_settings` SET `can_trade` = '1';
|
|
ALTER TABLE `rooms` ADD `trade_mode` INT NOT NULL DEFAULT '2';
|
|
ALTER TABLE `permissions` ADD `acc_trade_anywhere` ENUM( '0', '1' ) NOT NULL DEFAULT '0';
|
|
|
|
#END DATABASE UPDATE: 1.0.2 -> 1.0.3 |