mirror of
https://github.com/louislam/uptime-kuma.git
synced 2025-05-19 21:52:35 +02:00
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:
parent
cef314459e
commit
ab30bec14d
1 changed files with 0 additions and 13 deletions
|
@ -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");
|
||||
});
|
||||
};
|
Loading…
Add table
Reference in a new issue