migration: Delete db/knex_migrations/2024-12-13-1641-add-public-url.js

This migration wasn't necessary anymore and therefore has been removed.
This commit is contained in:
Ionys 2025-05-10 10:05:32 +02:00 committed by GitHub
parent cef314459e
commit ab30bec14d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1,13 +0,0 @@
// Add column publicUrl to monitor table
exports.up = function (knex) {
return knex.schema
.alterTable("monitor", function (table) {
table.text("public_url", "text");
});
};
exports.down = function (knex) {
return knex.schema.alterTable("monitor", function (table) {
table.dropColumn("public_url");
});
};