diff --git a/hawkbit-mgmt/hawkbit-mgmt-server/src/main/resources/application.properties b/hawkbit-mgmt/hawkbit-mgmt-server/src/main/resources/application.properties index f6afa16a5..91c192b76 100644 --- a/hawkbit-mgmt/hawkbit-mgmt-server/src/main/resources/application.properties +++ b/hawkbit-mgmt/hawkbit-mgmt-server/src/main/resources/application.properties @@ -43,6 +43,10 @@ hawkbit.server.repository.publish-target-poll-event=false # Disable discovery client of spring-cloud-commons spring.cloud.discovery.enabled=false +# Enable H2 console for development and testing purposes +#spring.h2.console.enabled=true +#spring.h2.console.path=/h2-console + # Swagger Configuration / https://springdoc.org/v2/#properties springdoc.api-docs.version=openapi_3_0 springdoc.show-oauth2-endpoints=true diff --git a/hawkbit-monolith/hawkbit-update-server/src/main/resources/application.properties b/hawkbit-monolith/hawkbit-update-server/src/main/resources/application.properties index b53cfc9d7..275263850 100644 --- a/hawkbit-monolith/hawkbit-update-server/src/main/resources/application.properties +++ b/hawkbit-monolith/hawkbit-update-server/src/main/resources/application.properties @@ -60,6 +60,10 @@ hawkbit.dmf.enabled=false #hawkbit.server.security.cors.enabled=true #hawkbit.server.security.cors.allowedOrigins=http://localhost +# Enable H2 console for development and testing purposes +#spring.h2.console.enabled=true +#spring.h2.console.path=/h2-console + # Swagger Configuration / https://springdoc.org/v2/#properties springdoc.api-docs.version=openapi_3_0 springdoc.show-oauth2-endpoints=true diff --git a/hawkbit-repository/hawkbit-repository-jpa-flyway/src/main/resources/db/migration/POSTGRESQL/V1_12_37__unify__POSTGRESQL.sql b/hawkbit-repository/hawkbit-repository-jpa-flyway/src/main/resources/db/migration/POSTGRESQL/V1_12_37__unify__POSTGRESQL.sql index 68b125537..2f701bc7d 100644 --- a/hawkbit-repository/hawkbit-repository-jpa-flyway/src/main/resources/db/migration/POSTGRESQL/V1_12_37__unify__POSTGRESQL.sql +++ b/hawkbit-repository/hawkbit-repository-jpa-flyway/src/main/resources/db/migration/POSTGRESQL/V1_12_37__unify__POSTGRESQL.sql @@ -110,4 +110,6 @@ ALTER INDEX sp_idx_action_status_prim_sp_action_status RENAME TO sp_idx_action_s ALTER INDEX sp_idx_action_status_02_sp_action_status RENAME TO sp_idx_action_status_02; -- rename index -ALTER TABLE sp_tenant RENAME CONSTRAINT fk_sp_tenant_default_ds_type TO fk_tenant_default_ds_type; \ No newline at end of file +ALTER TABLE sp_tenant RENAME CONSTRAINT fk_sp_tenant_default_ds_type TO fk_tenant_default_ds_type; + +ALTER TABLE sp_rollout_group ALTER COLUMN target_percentage FLOAT; \ No newline at end of file