mirror of
https://github.com/hoernschen/dendrite.git
synced 2024-12-27 23:48:27 +00:00
5 lines
165 B
Bash
Executable file
5 lines
165 B
Bash
Executable file
#!/bin/sh
|
|
|
|
for db in userapi_accounts mediaapi syncapi roomserver keyserver federationapi appservice mscs; do
|
|
createdb -U dendrite -O dendrite dendrite_$db
|
|
done
|