Files
SOP/sop-1.5.0.sql
tanghc 65e119eea8 1.5.0
2019-04-19 19:29:45 +08:00

3 lines
185 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.

ALTER TABLE `sop`.`isv_info` ADD COLUMN `sign_type` TINYINT NOT NULL DEFAULT 1 COMMENT '签名类型1:RSA2,2:MD5' AFTER `status`;
update isv_info set sign_type=2 where secret <> '';