-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
25cd8a6
commit 1450dab
Showing
1 changed file
with
29 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
module.exports = class AddRF6Voter1740124124489 { | ||
name = "AddRF6Voter1740124124489"; | ||
|
||
async up(db) { | ||
const SQUID_NETWORK = process.env.SQUID_NETWORK || "eth-sepolia"; | ||
if (SQUID_NETWORK !== "optimism-mainnet") return; | ||
// add organisation with name "RF6 Voter" and schema id "0x41513aa7b99bfea09d389c74aacedaeb13c28fb748569e9e2400109cbe284ee5" | ||
await db.query( | ||
`INSERT INTO "organisation" ("id", "name", "issuer", "color", "start_block") | ||
VALUES ( | ||
'0x41513aa7b99bfea09d389c74aacedaeb13c28fb748569e9e2400109cbe284ee5', | ||
'RF6 Voter', | ||
'0xe4553b743e74da3424ac51f8c1e586fd43ae226f', | ||
'#5e1312', | ||
126670178 | ||
)` | ||
); | ||
} | ||
|
||
async down(db) { | ||
const SQUID_NETWORK = process.env.SQUID_NETWORK || "eth-sepolia"; | ||
if (SQUID_NETWORK !== "optimism-mainnet") return; | ||
// remove organisation with name "RF6 Voter" and schema id "0x41513aa7b99bfea09d389c74aacedaeb13c28fb748569e9e2400109cbe284ee5" | ||
await db.query( | ||
`DELETE FROM "organisation" WHERE "id" = '0x41513aa7b99bfea09d389c74aacedaeb13c28fb748569e9e2400109cbe284ee5'` | ||
); | ||
} | ||
}; | ||
|