Skip to main content

Release notes 8.0.2

· One min read

Fixed a critical bug with module editing

This updated fixes a critical bug where editing a module's description could remove descriptions of tables it includes.

We recommend installing this update immediately.

If you encountered this issue and don't have a backup to restore, you can use this query in your repository to recover most of the descriptions in plaintext:

    UPDATE [dbo].[tables]

SET [description] = [description_plain]

WHERE [description] IS NULL;

You can also contact us at [email protected] and we'll guide you step by step.