Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
UPDATE voting_strategies
SET description = 'one address is simply only allowed one vote, assets do not come into play.'
WHERE key = 'one-address-one-vote';
UPDATE voting_strategies
SET description = 'a weight will be added for each NFT in a user address that matches the contract of the proposal'
WHERE key = 'balance-of-nfts';
6 changes: 6 additions & 0 deletions backend/migrations/000026_update_voting_strategy_desc.up.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
UPDATE voting_strategies
SET description = 'A weight will be added for each NFT in a user address that matches the contract of the proposal'
WHERE key = 'balance-of-nfts';
UPDATE voting_strategies
SET description = 'One address is simply only allowed one vote, assets do not come into play.'
Copy link
Copy Markdown
Contributor Author

@germanurrus germanurrus Jul 18, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

changed to uppercase one... to One...

WHERE key = 'one-address-one-vote';