rt-sim-training-service/sql/20230413-wei-training.sql

3 lines
218 B
MySQL
Raw Normal View History

2023-04-13 17:52:29 +08:00
ALTER TABLE `joylink`.`rts_published_training2` ADD COLUMN `shared` int NULL DEFAULT 0 COMMENT '0 不共享1共享' AFTER `client`;
2023-04-14 17:16:13 +08:00
update rts_published_training2 SET shared = 1,org_id = null WHERE creator_id = 0 ;