1
0
Fork 0
mirror of https://github.com/matrix-org/dendrite.git synced 2025-03-25 02:54:28 -05:00
dendrite/build/docker/postgres/create_db.sh
Marco Kundt d1496793b9
fix database names to reflect renaming ()
Co-authored-by: Neil Alexander <neilalexander@users.noreply.github.com>
2021-02-17 15:20:06 +00:00

6 lines
203 B
Bash
Executable file

#!/bin/sh
for db in userapi_accounts userapi_devices mediaapi syncapi roomserver signingkeyserver keyserver federationsender appservice naffka; do
createdb -U dendrite -O dendrite dendrite_$db
done