mirror of https://github.com/buster-so/buster.git
10 lines
268 B
MySQL
10 lines
268 B
MySQL
|
-- This file should undo anything in `up.sql`
|
||
|
-- Drop indexes
|
||
|
DROP INDEX IF EXISTS metric_files_deleted_at_idx;
|
||
|
DROP INDEX IF EXISTS metric_files_created_by_idx;
|
||
|
DROP INDEX IF EXISTS metric_files_organization_id_idx;
|
||
|
|
||
|
-- Drop table
|
||
|
DROP TABLE IF EXISTS metric_files;
|
||
|
|