mirror of
https://github.com/ProxyPanel/ProxyPanel.git
synced 2026-04-12 23:48:53 +00:00
10 lines
200 B
SQL
10 lines
200 B
SQL
-- 移除商品积分字段
|
|
ALTER TABLE `goods`
|
|
DROP COLUMN `score`;
|
|
|
|
-- 移除用户积分字段
|
|
ALTER TABLE `user`
|
|
DROP COLUMN `score`;
|
|
|
|
-- 移除用户积分日志表
|
|
DROP TABLE `user_score_log`; |