Files
loan-pricing/sql/add_workflow_dept_id_20260518.sql

6 lines
298 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.
-- 为流程表增加创建人部门ID用于支行管理员流程列表数据权限
ALTER TABLE `loan_pricing_workflow`
ADD COLUMN `dept_id` bigint(20) DEFAULT NULL COMMENT '创建人部门ID' AFTER `is_inclusive_finance`;
CREATE INDEX `idx_dept_id` ON `loan_pricing_workflow` (`dept_id`);