diff --git a/db/migrations/1719489409922-Data.js b/db/migrations/1719489409922-Data.js new file mode 100644 index 00000000..63501ed5 --- /dev/null +++ b/db/migrations/1719489409922-Data.js @@ -0,0 +1,11 @@ +module.exports = class Data1719489409922 { + name = 'Data1719489409922' + + async up(db) { + await db.query(`ALTER TABLE "collection_entity" ADD "base_uri" text`) + } + + async down(db) { + await db.query(`ALTER TABLE "collection_entity" DROP COLUMN "base_uri"`) + } +}