Files
shz-backend/sql/migration_add_is_urgent.sql
2026-06-26 23:54:59 +08:00

5 lines
240 B
SQL
Raw Permalink 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 表添加 is_urgent 字段
-- 0 = 非急聘默认1 = 急聘
ALTER TABLE "ks_db3"."job" ADD COLUMN "is_urgent" CHAR(1) DEFAULT '0';
COMMENT ON COLUMN "ks_db3"."job"."is_urgent" IS '是否急聘 0否 1是';