From f7559ef1ed3334890b07113209b48eaf6f0eaa50 Mon Sep 17 00:00:00 2001 From: Harmony Date: Thu, 16 May 2019 00:37:36 +0100 Subject: [PATCH 1/2] Fix Update SQL name from RC-1 to RC-2 to RC-2 to RC-3 --- sqlupdates/2_0_0-RC-1_TO_2_0_0-RC-2.sql | 11 ----------- 1 file changed, 11 deletions(-) delete mode 100644 sqlupdates/2_0_0-RC-1_TO_2_0_0-RC-2.sql diff --git a/sqlupdates/2_0_0-RC-1_TO_2_0_0-RC-2.sql b/sqlupdates/2_0_0-RC-1_TO_2_0_0-RC-2.sql deleted file mode 100644 index f6e347dd..00000000 --- a/sqlupdates/2_0_0-RC-1_TO_2_0_0-RC-2.sql +++ /dev/null @@ -1,11 +0,0 @@ -#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'); - -#END DATABASE UPDATE: 2.0.0 RC-2 -> 2.0.0 RC-3 \ No newline at end of file From 6f79afc9945f21a2d8b2eb0e3f6aff39246ea78e Mon Sep 17 00:00:00 2001 From: Harmony Date: Thu, 16 May 2019 00:38:51 +0100 Subject: [PATCH 2/2] Fix Update SQL name from RC-1 to RC-2 to RC-2 to RC-3 --- sqlupdates/2_0_0-RC-2_TO_2_0_0-RC-3.sql | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 sqlupdates/2_0_0-RC-2_TO_2_0_0-RC-3.sql diff --git a/sqlupdates/2_0_0-RC-2_TO_2_0_0-RC-3.sql b/sqlupdates/2_0_0-RC-2_TO_2_0_0-RC-3.sql new file mode 100644 index 00000000..7435cb55 --- /dev/null +++ b/sqlupdates/2_0_0-RC-2_TO_2_0_0-RC-3.sql @@ -0,0 +1,11 @@ +#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'); + + #END DATABASE UPDATE: 2.0.0 RC-2 -> 2.0.0 RC-3 \ No newline at end of file