Skip to content

Commit

Permalink
Revert "removed duplicate AddGitcoin Passport Holder migration"
Browse files Browse the repository at this point in the history
This reverts commit 71be6d6.
  • Loading branch information
aminlatifi committed Jun 16, 2024
1 parent 71be6d6 commit 1688d62
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions db/migrations/1728389519384-AddGitcoin Passport Holder.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
module.exports = class AddGitcoinPassportHolder1728389519384 {
name = "AddGitcoinPassportHolder1728389519384";

async up(db) {
const SQUID_NETWORK = process.env.SQUID_NETWORK || "eth-sepolia";
if (SQUID_NETWORK !== "optimism-mainnet") return;
// add organisation with name "Gitcoin Passport Holder" and schema id "0x6ab5d34260fca0cfcf0e76e96d439cace6aa7c3c019d7c4580ed52c6845e9c89"
await db.query(
`INSERT INTO "organisation" ("id", "name", "issuer", "color", "start_block")
VALUES (
'0x6ab5d34260fca0cfcf0e76e96d439cace6aa7c3c019d7c4580ed52c6845e9c89',
'Gitcoin Passport Holder',
'0x843829986e895facd330486a61ebee9e1f1adb1a',
'#00433b',
108517456
)`
);
}

async down(db) {
const SQUID_NETWORK = process.env.SQUID_NETWORK || "eth-sepolia";
if (SQUID_NETWORK !== "optimism-mainnet") return;
// remove organisation with name "Gitcoin Passport Holder" and schema id "0x6ab5d34260fca0cfcf0e76e96d439cace6aa7c3c019d7c4580ed52c6845e9c89"
await db.query(
`DELETE FROM "organisation" WHERE "id" = '0x6ab5d34260fca0cfcf0e76e96d439cace6aa7c3c019d7c4580ed52c6845e9c89'`
);
}
};

0 comments on commit 1688d62

Please sign in to comment.