mirror of
https://github.com/matrix-org/dendrite
synced 2024-10-31 21:19:04 +01: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
|