Files
omnivore/packages/db/migrations/0169.undo.add_failed_at_to_rule.sql

10 lines
165 B
PL/PgSQL
Executable File

-- Type: UNDO
-- Name: add_failed_at_to_rule
-- Description: Add failed_at column to rules table
BEGIN;
ALTER TABLE omnivore.rules DROP COLUMN failed_at;
COMMIT;