miniflux/templates/setup_db.psql.j2
author Luke Hoersten <luke@hoersten.org>
Sat, 22 Oct 2022 14:51:55 -0500
changeset 199 9aa5f284ea10
parent 130 46785fdb4fc5
child 227 2e0366f2dcbe
permissions -rw-r--r--
Added unifi ansible role

CREATE USER miniflux WITH ENCRYPTED PASSWORD '{{miniflux_db_pass}}';
CREATE DATABASE miniflux WITH OWNER miniflux;
\c miniflux;
--Extensions made by miniflux that need superuser access
CREATE EXTENSION IF NOT EXISTS hstore;