Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 0 additions & 6 deletions schema/schema.sql
Original file line number Diff line number Diff line change
Expand Up @@ -66,14 +66,8 @@

CREATE INDEX "idx_salary_amount" ON ONLY "public"."salary" (amount);

CREATE TRIGGER salary_log_trigger AFTER DELETE OR UPDATE ON public.salary FOR EACH ROW EXECUTE FUNCTION public.log_dml_operations();

Check failure on line 69 in schema/schema.sql

View workflow job for this annotation

GitHub Actions / check-release-on-prod

Disallowed statement in SDL file (239)

Statement type 'CREATE_TRIGGER' is not allowed in SDL files.

CREATE TABLE "public"."t0" (
"id" serial,
"username" text NOT NULL,
CONSTRAINT "t0_pkey" PRIMARY KEY (id)
);

CREATE TABLE "public"."title" (
"emp_no" integer NOT NULL,
"title" text NOT NULL,
Expand Down