mirror of
https://github.com/matrix-org/dendrite.git
synced 2025-12-10 16:33:11 -06:00
11 lines
276 B
Bash
Executable file
11 lines
276 B
Bash
Executable file
#!/bin/bash
|
|
set -e
|
|
|
|
sql_command=""
|
|
for i in account device media_api sync_api room_server server_key federation_sender; do
|
|
db="dendrite_$i"
|
|
sql_command="$sql_command CREATE DATABASE $db;"
|
|
done
|
|
|
|
echo "$sql_command" | psql -v ON_ERROR_STOP=1 --username "$POSTGRES_USER"
|