7 lines
215 B
MySQL
7 lines
215 B
MySQL
|
|
-- Rollback 133: Notification grouping
|
||
|
|
DROP INDEX IF EXISTS idx_notifications_group_key;
|
||
|
|
ALTER TABLE notifications
|
||
|
|
DROP COLUMN IF EXISTS group_key,
|
||
|
|
DROP COLUMN IF EXISTS actor_count,
|
||
|
|
DROP COLUMN IF EXISTS metadata;
|