chore: heygermany customer project
This commit is contained in:
11
db/postgres/0012-add-applicant-status.sql
Normal file
11
db/postgres/0012-add-applicant-status.sql
Normal file
@@ -0,0 +1,11 @@
|
||||
-- Create applicant_status enum
|
||||
CREATE TYPE app.applicant_status AS ENUM (
|
||||
'Initial',
|
||||
'Invalid',
|
||||
'Pending',
|
||||
'Complete'
|
||||
);
|
||||
|
||||
-- Add status field to candidate table
|
||||
ALTER TABLE app.candidate
|
||||
ADD COLUMN status app.applicant_status DEFAULT 'Initial' NOT NULL;
|
||||
Reference in New Issue
Block a user