Upgrading

0.3.3


❗️

config filename changes

The config file names will now be named ddb.conf, dfe.conf and dpx.conf. Please shut down the installation, rename the files and only then update.

0.3.2


📘

postgres only

if you are not using the postgres indexer please skip the following paragraph

With 0.3.2 the indexer model significantly changes significantly. Further updates will use migrations to automatically keep the database automatically in check however for this one time we'll have to add a manual procedure.

As indexes are deterministically generated the simplest solution is just to drop all tables and let the initial migration set it up.

However if that is not an option there is a manual upgrade procedure described here in addition a new migrations table needs to be created and the initial migration skipped.

CREATE TABLE migrations (
  id VARCHAR(255) PRIMARY KEY,
  datetime TIMESTAMP DEFAULT CURRENT_TIMESTAMP
);
INSERT INTO migrations (id) VALUES  ('1495845241_initial');