mirror of
https://github.com/matrix-org/dendrite
synced 2025-03-05 07:47:31 +00:00
5 lines
162 B
Bash
5 lines
162 B
Bash
#!/bin/bash
|
|
|
|
for db in account device mediaapi syncapi roomserver serverkey federationsender publicroomsapi naffka; do
|
|
createdb -O dendrite dendrite_$db
|
|
done
|