removed isHiring from Organization. Will be calculated

This commit is contained in:
xfarrow
2024-03-18 16:24:56 +01:00
parent 61f021db3c
commit 8636416003
4 changed files with 9 additions and 6 deletions

View File

@ -7,8 +7,7 @@ CREATE TABLE IF NOT EXISTS public."Organization"
id SERIAL PRIMARY KEY,
name character varying(128) NOT NULL,
location character varying,
description text,
is_hiring boolean
description text
)
TABLESPACE pg_default;