-
Notifications
You must be signed in to change notification settings - Fork 75
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3410 from OriginTrail/v8/release/devnet
OriginTrail Testnet Release v8.1.2-beta
- Loading branch information
Showing
12 changed files
with
437 additions
and
289 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
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
13 changes: 13 additions & 0 deletions
13
...equelize/migrations/20241105150000-change-data-source-col-type-in-paranet-synced-asset.js
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,13 @@ | ||
export async function up({ context: { queryInterface, Sequelize } }) { | ||
await queryInterface.changeColumn('paranet_synced_asset', 'data_source', { | ||
type: Sequelize.ENUM('sync', 'local_store'), | ||
allowNull: true, | ||
}); | ||
} | ||
|
||
export async function down({ context: { queryInterface, Sequelize } }) { | ||
await queryInterface.changeColumn('paranet_synced_asset', 'data_source', { | ||
type: Sequelize.TEXT, | ||
allowNull: true, | ||
}); | ||
} |
Oops, something went wrong.