This document provides step-by-step guidance for upgrading from Athena version to another.
In Desmos Core v6, we've introduced a new feature called AdditionalFeeTokens
to the Subspace
type. To make use of
this feature, follow these steps to modify the database:
- Open your SQL management tool.
- Run the following SQL query:
ALTER TABLE subspace ADD COLUMN additional_fee_tokens COIN[];
Additionally, Desmos Core v6 has added an Owner
field to the Post
type. To ensure compatibility, follow these steps:
- Open your SQL management tool.
- Run the following SQL query:
ALTER TABLE post ADD COLUMN owner_address TEXT;
Because of these new column additions, you need to update the Hasura metadata to include the new columns.