mirror of
https://github.com/hoernschen/dendrite.git
synced 2024-12-28 07:58:27 +00:00
5 lines
185 B
Bash
5 lines
185 B
Bash
#!/bin/bash
|
|
|
|
for db in account device mediaapi syncapi roomserver serverkey federationsender publicroomsapi appservice naffka; do
|
|
createdb -U dendrite -O dendrite dendrite_$db
|
|
done
|