Files
Memoh/db/migrations/0004_search_providers.down.sql
T
BBQ d268483d81 fix(migrations): add 0004 for search_providers table
Add incremental migration for existing databases to create the
search_providers table and bots.search_provider_id column introduced
in the search provider feature.
2026-02-16 02:37:25 +08:00

4 lines
130 B
SQL

-- 0005_search_providers (down)
ALTER TABLE bots DROP COLUMN IF EXISTS search_provider_id;
DROP TABLE IF EXISTS search_providers;