Skip to content

Commit

Permalink
bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
vignesha22 committed Jul 26, 2024
1 parent 097689e commit f5b1d8b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/migrations/20240725000001-update-apiKey-table.cjs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
require('dotenv').config();

async function up({ context: queryInterface }) {
await queryInterface.sequelize.query(`ALTER TABLE IF EXISTS arka.api_keys ADD COLUMN "ERC20_PAYMASTERS_V2" text default null`);
await queryInterface.sequelize.query(`ALTER TABLE IF EXISTS "${process.env.DATABASE_SCHEMA_NAME}".api_keys ADD COLUMN "ERC20_PAYMASTERS_V2" text default null`);
}

async function down({ context: queryInterface }) {
Expand Down

0 comments on commit f5b1d8b

Please sign in to comment.