Files
loan-pricing/sql/fix_loan_rate_nullable.sql
2026-02-02 15:25:38 +08:00

9 lines
429 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.
-- ============================================================
-- 修改 loan_rate 字段允许为 NULL
-- 说明loan_rate 是由模型计算后填写的,创建时不需要用户输入
-- 创建日期: 2025-02-02
-- ============================================================
ALTER TABLE `loan_pricing_workflow`
MODIFY COLUMN `loan_rate` varchar(20) DEFAULT NULL COMMENT '贷款利率(由模型计算后填写)';