mirror of
https://github.com/Traceworks2023/nxtgauge-backend-rust.git
synced 2026-06-11 22:42:40 +00:00
15 lines
345 B
MySQL
15 lines
345 B
MySQL
|
|
-- Phase 4 rollback: drop analytics, user prefs, and article views.
|
||
|
|
|
||
|
|
BEGIN;
|
||
|
|
|
||
|
|
DROP INDEX IF EXISTS idx_ai_article_views_user;
|
||
|
|
DROP INDEX IF EXISTS idx_ai_article_views_article;
|
||
|
|
DROP TABLE IF EXISTS ai_article_views;
|
||
|
|
|
||
|
|
DROP TABLE IF EXISTS ai_user_prefs;
|
||
|
|
|
||
|
|
DROP INDEX IF EXISTS idx_ai_daily_stats_date;
|
||
|
|
DROP TABLE IF EXISTS ai_daily_stats;
|
||
|
|
|
||
|
|
COMMIT;
|