mirror of https://github.com/rocboss/paopao-ce
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.
20 lines
439 B
20 lines
439 B
DROP TABLE IF EXISTS "p_post_metric";
|
|
|
|
-- 原来的可见性: 0公开 1私密 2好友可见 3关注可见
|
|
-- 现在的可见性: 0私密 10充电可见 20订阅可见 30保留 40保留 50好友可见 60关注可见 70保留 80保留 90公开
|
|
UPDATE p_post AS a
|
|
SET visibility = (
|
|
SELECT
|
|
CASE visibility
|
|
WHEN 90 THEN 0
|
|
WHEN 0 THEN 1
|
|
WHEN 50 THEN 2
|
|
WHEN 60 THEN 3
|
|
ELSE 0
|
|
END
|
|
FROM
|
|
p_post AS b
|
|
WHERE
|
|
a.ID = b.ID
|
|
);
|