-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update zahori-server version to 0.1.17
- Loading branch information
1 parent
d00e911
commit 45d3237
Showing
5 changed files
with
71 additions
and
33 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
selenoid/vnc_chrome:110.0 | ||
browsers/edge:110.0 | ||
selenoid/vnc_firefox:110.0 | ||
selenoid/vnc_opera:94.0 | ||
selenoid/vnc_chrome:114.0 | ||
browsers/edge:114.0 | ||
selenoid/vnc_firefox:114.0 | ||
selenoid/vnc_opera:98.0 | ||
browsers/safari:15.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
---------------- PERIODIC EXECUTIONS ---------------- | ||
ALTER TABLE public.periodic_executions ALTER COLUMN "time" TYPE varchar USING "time"::varchar; | ||
ALTER TABLE public.periodic_executions ALTER COLUMN days TYPE text[] USING days::text[]; | ||
ALTER TABLE public.periodic_executions ADD uuid uuid NOT NULL; | ||
ALTER TABLE public.periodic_executions ADD execution_id int4 NULL; | ||
ALTER TABLE public.periodic_executions ADD CONSTRAINT rel_periodic_executions_executions_fk FOREIGN KEY (execution_id) REFERENCES public.executions(execution_id); | ||
|
||
---------------- EXECUTIONS ---------------- | ||
ALTER TABLE public.executions ADD "trigger" varchar NULL; | ||
UPDATE public.executions SET trigger = 'Manual'; | ||
ALTER TABLE public.executions DROP CONSTRAINT rel_periodic_executions_executions_fk; | ||
ALTER TABLE public.executions DROP COLUMN periodic_execution_id; | ||
|
||
---------------- UPDATE BROWSER VERSIONS ---------------- | ||
UPDATE public.browsers SET default_version = '114.0' WHERE browser_name = 'chrome'; | ||
UPDATE public.browsers SET default_version = '114.0' WHERE browser_name = 'edge'; | ||
UPDATE public.browsers SET default_version = '114.0' WHERE browser_name = 'firefox'; | ||
UPDATE public.browsers SET default_version = '98.0' WHERE browser_name = 'opera'; | ||
UPDATE public.browsers SET default_version = '15.0' WHERE browser_name = 'safari'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Europe/Madrid |