File tree Expand file tree Collapse file tree 4 files changed +8
-8
lines changed
Expand file tree Collapse file tree 4 files changed +8
-8
lines changed Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 11services :
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 :
Original file line number Diff line number Diff line change 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
88SET statement_timeout = 0 ;
99SET lock_timeout = 0 ;
@@ -1302,15 +1302,15 @@ ALTER TABLE ONLY public.owasp_top10_training
13021302--
13031303
13041304ALTER 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
13121312ALTER 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--
You can’t perform that action at this time.
0 commit comments