diff --git a/db/knex_migrations/2023-10-13-1200-add-custom-html.js b/db/knex_migrations/2023-10-13-1200-add-custom-html.js index 5c206d1a5b9..2e03152409a 100644 --- a/db/knex_migrations/2023-10-13-1200-add-custom-html.js +++ b/db/knex_migrations/2023-10-13-1200-add-custom-html.js @@ -7,5 +7,8 @@ exports.up = function (knex) { }; exports.down = function (knex) { - + return knex.schema + .alterTable("status_page", function (table) { + table.dropColumn("custom_html"); + }); };