mirror of
https://github.com/matrix-org/dendrite.git
synced 2024-11-23 23:01:56 -06:00
6 lines
181 B
Bash
Executable file
6 lines
181 B
Bash
Executable file
#!/bin/sh
|
|
|
|
for db in userapi_accounts userapi_devices mediaapi syncapi roomserver keyserver federationapi appservice mscs; do
|
|
createdb -U dendrite -O dendrite dendrite_$db
|
|
done
|