All checks were successful
构建并部署到测试环境(无 SSH) / build-and-deploy (push) Successful in 8m26s
9 lines
293 B
SQL
9 lines
293 B
SQL
-- 回滚企业微信可见成员快照及账号绑定字段。
|
|
DROP TABLE IF EXISTS tb_wecom_member;
|
|
DROP INDEX IF EXISTS uq_account_wecom_identity;
|
|
|
|
ALTER TABLE tb_account
|
|
DROP COLUMN IF EXISTS wecom_name,
|
|
DROP COLUMN IF EXISTS wecom_userid,
|
|
DROP COLUMN IF EXISTS wecom_corp_id;
|