mirror of
https://github.com/matrix-org/dendrite.git
synced 2025-01-19 10:24:27 -06:00
6 lines
162 B
Bash
6 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
|