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

7 lines
433 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.
USE `loan-pricing`;
SET NAMES utf8mb4;
ALTER TABLE loan_pricing_workflow
MODIFY COLUMN loan_loop varchar(10) DEFAULT NULL COMMENT '循环功能: true/false贷款合同是否开通循环功能',
MODIFY COLUMN coll_third_party varchar(10) DEFAULT NULL COMMENT '抵质押物是否三方所有: true/false',
MODIFY COLUMN is_inclusive_finance varchar(10) DEFAULT NULL COMMENT '是否普惠小微借款人: true/false';