Skip to content

Commit 8068255

Browse files
authored
deps: postgres 17.4 (#236)
1 parent 424ae8c commit 8068255

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414

1515
services:
1616
postgres:
17-
image: postgres:17.2
17+
image: postgres:17.4
1818
env:
1919
POSTGRES_DB: dashboard
2020
POSTGRES_USER: visionBoard

.github/workflows/e2e-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515

1616
services:
1717
postgres:
18-
image: postgres:17.2
18+
image: postgres:17.4
1919
env:
2020
POSTGRES_DB: dashboard
2121
POSTGRES_USER: visionBoard

docker-compose.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
services:
22
db:
3-
image: postgres:17.2
3+
image: postgres:17.4
44
restart: always
55
environment:
66
POSTGRES_DB: dashboard
@@ -33,7 +33,7 @@ services:
3333
start_period: 5s
3434

3535
schema-dump:
36-
image: postgres:17.2
36+
image: postgres:17.4
3737
depends_on:
3838
- db
3939
environment:

src/database/schema/schema.sql

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
-- PostgreSQL database dump
33
--
44

5-
-- Dumped from database version 17.2 (Debian 17.2-1.pgdg120+1)
6-
-- Dumped by pg_dump version 17.2 (Debian 17.2-1.pgdg120+1)
5+
-- Dumped from database version 17.4 (Debian 17.4-1.pgdg120+2)
6+
-- Dumped by pg_dump version 17.4 (Debian 17.4-1.pgdg120+2)
77

88
SET statement_timeout = 0;
99
SET lock_timeout = 0;
@@ -1302,15 +1302,15 @@ ALTER TABLE ONLY public.owasp_top10_training
13021302
--
13031303

13041304
ALTER TABLE ONLY public.resources_for_compliance_checks
1305-
ADD CONSTRAINT resources_for_compliance_checks_compliance_check_id_foreign FOREIGN KEY (compliance_check_id) REFERENCES public.compliance_checks(id);
1305+
ADD CONSTRAINT resources_for_compliance_checks_compliance_check_id_foreign FOREIGN KEY (compliance_check_id) REFERENCES public.compliance_checks(id) ON UPDATE CASCADE ON DELETE CASCADE;
13061306

13071307

13081308
--
13091309
-- Name: resources_for_compliance_checks resources_for_compliance_checks_compliance_check_resource_id_fo; Type: FK CONSTRAINT; Schema: public; Owner: -
13101310
--
13111311

13121312
ALTER TABLE ONLY public.resources_for_compliance_checks
1313-
ADD CONSTRAINT resources_for_compliance_checks_compliance_check_resource_id_fo FOREIGN KEY (compliance_check_resource_id) REFERENCES public.compliance_checks_resources(id);
1313+
ADD CONSTRAINT resources_for_compliance_checks_compliance_check_resource_id_fo FOREIGN KEY (compliance_check_resource_id) REFERENCES public.compliance_checks_resources(id) ON UPDATE CASCADE ON DELETE CASCADE;
13141314

13151315

13161316
--

0 commit comments

Comments
 (0)