This commit is contained in:
张成
2026-04-16 14:01:52 +08:00
parent 7ef0c68ad1
commit df0aacc782
10 changed files with 531 additions and 22 deletions

View File

@@ -0,0 +1,8 @@
-- 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;