Skip to content

Commit

Permalink
Merge pull request #290 from kodadot/main
Browse files Browse the repository at this point in the history
🗃️ base_uri
  • Loading branch information
vikiival authored Jun 27, 2024
2 parents 089d788 + ab91dd4 commit 96c6a99
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 96c6a99

Please sign in to comment.