-
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.
* refactor: increase network size to 32 characters in the database (#204) * chore: bumped to v1.6.4 (#205) * fix: invalid parameter being sent to sendMessageSQS (#209) * fix: invalid parameter being sent to sendMessageSQS * refactor: added helper method to send realtime tx * docs: added docstring to sendRealtimeTx * refactor: removed unused import
- Loading branch information
Showing
4 changed files
with
43 additions
and
11 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,18 @@ | ||
'use strict'; | ||
|
||
/** @type {import('sequelize-cli').Migration} */ | ||
module.exports = { | ||
async up (queryInterface, Sequelize) { | ||
await queryInterface.changeColumn('version_data', 'network', { | ||
type: Sequelize.STRING(32), | ||
allowNull: false, | ||
}); | ||
}, | ||
|
||
async down (queryInterface, Sequelize) { | ||
await queryInterface.changeColumn('version_data', 'network', { | ||
type: Sequelize.STRING(8), | ||
allowNull: false, | ||
}); | ||
} | ||
}; |
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
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
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