9 lines
220 B
PL/PgSQL
9 lines
220 B
PL/PgSQL
BEGIN;
|
|
|
|
-- Drop indexes
|
|
DROP INDEX IF EXISTS idx_user_profiles_user_id;
|
|
DROP INDEX IF EXISTS idx_departments_id;
|
|
DROP INDEX IF EXISTS idx_user_department_composite;
|
|
DROP INDEX IF EXISTS idx_users_id_not_deleted;
|
|
|
|
COMMIT; |