8 lines
282 B
MySQL
8 lines
282 B
MySQL
|
|
-- 076_create_gear_items_down.sql
|
||
|
|
-- Rollback: Drop gear_items table and its indexes
|
||
|
|
|
||
|
|
DROP INDEX IF EXISTS public.idx_gear_items_user_id;
|
||
|
|
DROP INDEX IF EXISTS public.idx_gear_items_category;
|
||
|
|
DROP INDEX IF EXISTS public.idx_gear_items_status;
|
||
|
|
DROP TABLE IF EXISTS public.gear_items;
|