mirror of
https://github.com/1f349/dendrite.git
synced 2024-11-10 06:53:00 +00:00
d1496793b9
Co-authored-by: Neil Alexander <neilalexander@users.noreply.github.com>
6 lines
203 B
Bash
Executable File
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
|