8 lines
425 B
MySQL
8 lines
425 B
MySQL
|
|
-- customer_profiles has always had custom_data (used for generic profile
|
||
|
|
-- save via apps/users/src/handlers/profile.rs) but never got a `status`
|
||
|
|
-- column, so verification-status tracking for the CUSTOMER role fails
|
||
|
|
-- outright with "column does not exist" — same root cause already fixed
|
||
|
|
-- for job_seeker_profiles.
|
||
|
|
ALTER TABLE customer_profiles
|
||
|
|
ADD COLUMN IF NOT EXISTS status VARCHAR(50) NOT NULL DEFAULT 'DRAFT';
|