From 1b66e2af5cb8f0e385d08bb3c6e79aac12ceda2f Mon Sep 17 00:00:00 2001 From: Eike Kettner Date: Sat, 23 Jan 2021 21:30:26 +0100 Subject: [PATCH] Fix classifier_settings table --- .../main/resources/db/migration/h2/V1.19.1__remove_enabled.sql | 2 ++ .../resources/db/migration/mariadb/V1.19.1__remove_enabled.sql | 2 ++ .../db/migration/postgresql/V1.19.1__remove_enabled.sql | 2 ++ 3 files changed, 6 insertions(+) create mode 100644 modules/store/src/main/resources/db/migration/h2/V1.19.1__remove_enabled.sql create mode 100644 modules/store/src/main/resources/db/migration/mariadb/V1.19.1__remove_enabled.sql create mode 100644 modules/store/src/main/resources/db/migration/postgresql/V1.19.1__remove_enabled.sql diff --git a/modules/store/src/main/resources/db/migration/h2/V1.19.1__remove_enabled.sql b/modules/store/src/main/resources/db/migration/h2/V1.19.1__remove_enabled.sql new file mode 100644 index 00000000..c2f74901 --- /dev/null +++ b/modules/store/src/main/resources/db/migration/h2/V1.19.1__remove_enabled.sql @@ -0,0 +1,2 @@ +alter table "classifier_setting" +drop column "enabled"; diff --git a/modules/store/src/main/resources/db/migration/mariadb/V1.19.1__remove_enabled.sql b/modules/store/src/main/resources/db/migration/mariadb/V1.19.1__remove_enabled.sql new file mode 100644 index 00000000..acacf4d2 --- /dev/null +++ b/modules/store/src/main/resources/db/migration/mariadb/V1.19.1__remove_enabled.sql @@ -0,0 +1,2 @@ +alter table `classifier_setting` +drop column `enabled`; diff --git a/modules/store/src/main/resources/db/migration/postgresql/V1.19.1__remove_enabled.sql b/modules/store/src/main/resources/db/migration/postgresql/V1.19.1__remove_enabled.sql new file mode 100644 index 00000000..c2f74901 --- /dev/null +++ b/modules/store/src/main/resources/db/migration/postgresql/V1.19.1__remove_enabled.sql @@ -0,0 +1,2 @@ +alter table "classifier_setting" +drop column "enabled";