From f992f92e5c25c6d64c09522c73c2f0d0910c30e9 Mon Sep 17 00:00:00 2001 From: "Karl O. Pinc" Date: Tue, 30 Jan 2024 17:13:38 -0600 Subject: [PATCH] Add caution that remaking triggers or views drop triggers --- make_files/make_db.mk | 2 ++ 1 file changed, 2 insertions(+) diff --git a/make_files/make_db.mk b/make_files/make_db.mk index 27cb45c..c1deaa4 100644 --- a/make_files/make_db.mk +++ b/make_files/make_db.mk @@ -249,6 +249,7 @@ droptypes: $(PSQL_DEPENDS) droptypes.sql # someday may need to be more complicated. ## retable Re-install all the tables +## CAUTION: The tables' triggers must be re-installed! .PHONY: retable retable: $(PSQL_DEPENDS) db/schemas/droptables.sql db/schemas/createtables.sql ( $(PSQL_SETUP) \ @@ -287,6 +288,7 @@ refunction: $(PSQL_DEPENDS) \ | psql $(PSQL_ARGS) $(PSQL_SINGLE_TRANS) --set=ON_ERROR_STOP=y ## review Re-install all the views +## CAUTION: The views' triggers must be re-installed! .PHONY: review review: $(PSQL_DEPENDS) \ db/schemas/dropviews.sql db/schemas/createviews.sql -- 2.34.1