Skip to content

Holds the DE's feature toggles, including the maintenance flag.

Create

Connect as a superuser on the host running PostgreSQL:

psql -h <DATABASE_HOST> -U postgres
-- as a superuser
create user unleash with password '<GENERATED_SECRET>';
create database unleash with owner unleash;

Extensions

\c unleash
create extension "uuid-ossp";
create extension "moddatetime";
create extension "btree_gist";

Migrations

Unleash applies its own schema migrations at startup; there is nothing to run here. See Unleash deployment.

Related