mirror of https://github.com/buster-so/buster.git
7 lines
234 B
MySQL
7 lines
234 B
MySQL
|
-- This file should undo anything in `up.sql`
|
||
|
-- Drop the scheduled cron job
|
||
|
SELECT
|
||
|
cron.unschedule('delete_old_anon_users_job');
|
||
|
|
||
|
-- Drop the function to delete old anonymous users
|
||
|
DROP FUNCTION IF EXISTS delete_old_anon_users();
|