buster/api/migrations/2024-12-23-200017_terms_search/down.sql

7 lines
269 B
MySQL
Raw Normal View History

2025-01-04 05:32:54 +08:00
-- This file should undo anything in `up.sql`
drop index if exists terms_search_embedding_idx;
drop index if exists terms_search_fts_idx;
drop index if exists terms_search_term_id_organization_id_idx;
drop table if exists terms_search;
drop extension if exists vector;