mirror of
https://github.com/1f349/dendrite.git
synced 2024-11-10 06:53:00 +00: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
|