From ab21b3475939fa6009229fc84b6e904ce6d7cc73 Mon Sep 17 00:00:00 2001 From: Adela Date: Wed, 19 Nov 2025 17:58:32 +0100 Subject: [PATCH] Delete 't0' table from schema.sql Removed the 't0' table definition from the schema. --- schema/schema.sql | 6 ------ 1 file changed, 6 deletions(-) diff --git a/schema/schema.sql b/schema/schema.sql index 94f9be0..fd49c5c 100644 --- a/schema/schema.sql +++ b/schema/schema.sql @@ -68,12 +68,6 @@ 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(); -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,