You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
6 lines
395 B
6 lines
395 B
4 years ago
|
ALTER TABLE `tduck`.`pr_user_project_result`
|
||
|
ADD COLUMN `wx_open_id` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '微信openId' AFTER `complete_time`,
|
||
|
ADD COLUMN `wx_user_info` json NULL COMMENT '微信用户信息' AFTER `wx_open_id`,
|
||
|
|
||
|
ALTER TABLE `tduck`.`pr_user_project_setting`
|
||
|
ADD COLUMN `is_wx_write_once` tinyint(1) NULL AFTER `is_wx_write`;
|