Files
autoAiWorkSys/_sql/add_job_postings_deliver_fields.sql
张成 df0aacc782 11
2026-04-16 14:01:52 +08:00

9 lines
415 B
SQL
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
-- job_postings是否已投递成功、未投递/投递失败原因(直接存表,不连表查询)
-- 若字段已存在可忽略报错
ALTER TABLE job_postings
ADD COLUMN is_delivered TINYINT(1) NOT NULL DEFAULT 0 COMMENT '是否已投递成功1是 0否' AFTER applyTime;
ALTER TABLE job_postings
ADD COLUMN deliver_failed_reason TEXT NULL COMMENT '未投递或投递失败原因' AFTER is_delivered;