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";