mirror of
https://github.com/matrix-org/dendrite.git
synced 2024-11-23 06:41:56 -06:00
6 lines
165 B
Bash
Executable file
6 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
|