Commit 82f873ac by 284718418@qq.com

更新MySQL脚本

parent d59d2e72
......@@ -198,6 +198,8 @@ ALTER TABLE `insure_policy`
ADD COLUMN `policy_pay_type` int(11) NOT NULL DEFAULT 1 COMMENT '1在线支付 2预付款 3线下支付' AFTER `create_time`,
ADD COLUMN `pay_id` int(11) NULL DEFAULT NULL COMMENT 'insure_pay表的id' AFTER `policy_pay_type`;
#202292811:47:51
ALTER TABLE `insure_user`
ADD COLUMN `product_plan_id` int(11) NULL DEFAULT NULL COMMENT 'insure_product_plan表的Id' AFTER `remake`;
......@@ -223,3 +225,6 @@ CREATE TABLE `insure_product_plan` (
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 8 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '投保方案中间表' ROW_FORMAT = Dynamic;
ALTER TABLE `insure_user`
MODIFY COLUMN `price` double(10, 2) NULL DEFAULT NULL COMMENT '单价' AFTER `trans_id`,
MODIFY COLUMN `premium` double(10, 2) NULL DEFAULT NULL COMMENT '保单批次保费' AFTER `batch_no`;
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment