Skip to content

Commit

Permalink
🗃️ base_uri
Browse files Browse the repository at this point in the history
  • Loading branch information
vikiival committed Jun 27, 2024
1 parent 10cc8e1 commit ab91dd4
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions db/migrations/1719489409922-Data.js
Original file line number Diff line number Diff line change
@@ -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"`)
}
}

0 comments on commit ab91dd4

Please sign in to comment.