mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-09-07 16:03:21 +00:00
8 lines
214 B
SQL
8 lines
214 B
SQL
-- Reverse of step 1: drop indexes and columns
|
|
|
|
DROP INDEX IF EXISTS idx_token_prefix;
|
|
DROP INDEX IF EXISTS token_hash_unique;
|
|
|
|
ALTER TABLE token DROP COLUMN token_hash;
|
|
ALTER TABLE token DROP COLUMN token_prefix;
|