-
Notifications
You must be signed in to change notification settings - Fork 44
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* remove ChainEntityMeta model + routes + messageProcessor * client side entity meta removal + remaining server references * chain-events + common-common entity meta removal * remove entity meta migration CW * fix types * remove queued column from ChainEntities CE side * revert migration create bare-bones ChainEntityMeta table * Remove threadTitle. * trigger CI again * update compound getVotes so it doesn't run out of tokens for tests * update ganache version to latest * trigger CI * trigger CI * merge master fixes * remove entity_meta from threads model on client * remove entity_meta from backend get_bulk_threads --------- Co-authored-by: Jake Naviasky <jake@commonwealth.im> Co-authored-by: Muon Shot <120686579+CowMuon@users.noreply.github.com>
- Loading branch information
1 parent
7c9b93b
commit 659d0d6
Showing
40 changed files
with
163 additions
and
641 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 |
---|---|---|
|
@@ -25,6 +25,6 @@ | |
"web3": "^1.8.2" | ||
}, | ||
"optionalDependencies": { | ||
"ganache": "^7.7.6" | ||
"ganache": "^7.9.0" | ||
} | ||
} |
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
15 changes: 15 additions & 0 deletions
15
packages/chain-events/services/database/migrations/20230525101148-remove-entity-queued.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,15 @@ | ||
'use strict'; | ||
|
||
module.exports = { | ||
up: async (queryInterface, Sequelize) => { | ||
await queryInterface.removeColumn('ChainEntities', 'queued'); | ||
}, | ||
|
||
down: async (queryInterface, Sequelize) => { | ||
await queryInterface.addColumn('ChainEntities', 'queued', { | ||
type: Sequelize.STRING, | ||
defaultValue: 0, | ||
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
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
43 changes: 0 additions & 43 deletions
43
packages/common-common/src/rabbitmq/types/chainEntityCUD.ts
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.