mirror of
https://github.com/Traceworks2023/nxtgauge-backend-rust.git
synced 2026-06-11 23:10:56 +00:00
10 lines
239 B
PL/PgSQL
10 lines
239 B
PL/PgSQL
-- Phase 4 rollback: drop A/B testing tables.
|
|
|
|
BEGIN;
|
|
|
|
DROP INDEX IF EXISTS idx_ai_ab_assignments_variant;
|
|
DROP INDEX IF EXISTS idx_ai_ab_assignments_user;
|
|
DROP TABLE IF EXISTS ai_ab_assignments;
|
|
DROP TABLE IF EXISTS ai_ab_tests;
|
|
|
|
COMMIT;
|