diff --git a/backend/src/main/resources/db/migration/V41__set_ui.sql b/backend/src/main/resources/db/migration/V41__set_ui.sql new file mode 100644 index 0000000000..e4cbf85c02 --- /dev/null +++ b/backend/src/main/resources/db/migration/V41__set_ui.sql @@ -0,0 +1,10 @@ +INSERT INTO system_parameter (param_key, param_value, type, sort) +VALUES ('ui.loginImage', NULL, 'file', 3); +INSERT INTO system_parameter (param_key, param_value, type, sort) +VALUES ('ui.loginLogo', NULL, 'file', 2); +INSERT INTO system_parameter (param_key, param_value, type, sort) +VALUES ('ui.loginTitle', '', 'text', 4); +INSERT INTO system_parameter (param_key, param_value, type, sort) +VALUES ('ui.logo', NULL, 'file', 1); +INSERT INTO system_parameter (param_key, param_value, type, sort) +VALUES ('ui.title', '', 'text', 5); \ No newline at end of file