0
0
Fork 0
mirror of https://github.com/matrix-org/dendrite synced 2024-10-05 09:18:55 +02:00
dendrite/build/docker/postgres/create_db.sh

6 lines
165 B
Bash
Raw Normal View History

2020-10-13 10:50:11 +02:00
#!/bin/sh
for db in userapi_accounts mediaapi syncapi roomserver keyserver federationapi appservice mscs; do
createdb -U dendrite -O dendrite dendrite_$db
done