Skip to content

Commit 3339314

Browse files
authored
feat(postings): seo fields (#194)
1 parent 443e740 commit 3339314

File tree

7 files changed

+584
-12
lines changed

7 files changed

+584
-12
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
DO $$ BEGIN
2+
CREATE TYPE "public"."employment_type" AS ENUM('FULL_TIME', 'PART_TIME', 'CONTRACTOR', 'INTERN', 'VOLUNTEER', 'PER_DIEM', 'OTHER');
3+
EXCEPTION
4+
WHEN duplicate_object THEN null;
5+
END $$;
6+
--> statement-breakpoint
7+
ALTER TABLE "job_postings" ADD COLUMN "employment_type" "employment_type" DEFAULT 'FULL_TIME' NOT NULL;--> statement-breakpoint
8+
ALTER TABLE "job_postings" ADD COLUMN "job_locations" json;--> statement-breakpoint
9+
ALTER TABLE "job_postings" ADD COLUMN "is_remote" boolean DEFAULT false NOT NULL;--> statement-breakpoint
10+
ALTER TABLE "job_postings" ADD COLUMN "base_salary" json;

0 commit comments

Comments
 (0)