Skip to content
This repository was archived by the owner on May 2, 2024. It is now read-only.

Migration Guide

Benjamin Sautner edited this page Sep 28, 2016 · 4 revisions

This Guide will help you migrate to new versions of the server if we introduce a breaking change

4.0.3 -> 4.0.4

We changed a column in the datastore data channel to handle up to 64K of text. This won't be automatically detected by the update. You can drop the VALUESTORE table and it will be recreated correctly if you don't mind the data loss, or run the following SQL script.

ALTER TABLE nimbits.VALUESTORE CHANGE COLUMN DATA DATA LONGTEXT NULL DEFAULT NULL;

Clone this wiki locally