Update 9-create_job_offer_tag.sql

This commit is contained in:
Alessandro Ferro 2024-03-26 23:17:51 +01:00
parent 68dafe32d1
commit cc4f6f6a1d
1 changed files with 1 additions and 1 deletions

View File

@ -5,7 +5,7 @@
CREATE TABLE IF NOT EXISTS public."JobOfferTag"
(
id integer NOT NULL DEFAULT nextval('"JobOfferTag_id_seq"'::regclass),
id serial,
job_offer_id integer NOT NULL,
tag_id integer NOT NULL,
CONSTRAINT "JobOfferTag_pkey" PRIMARY KEY (id),