aboutsummaryrefslogtreecommitdiff
path: root/build/docker/postgres/create_db.sh
diff options
context:
space:
mode:
authorNeil Alexander <neilalexander@users.noreply.github.com>2022-03-09 16:38:50 +0000
committerNeil Alexander <neilalexander@users.noreply.github.com>2022-03-09 16:38:50 +0000
commitd78e0a33e02518f7d5b901a584f3e2151759cb98 (patch)
treeadfacf7db71b04c338ebe25d8b2bb4384574dae3 /build/docker/postgres/create_db.sh
parent089d16812c8a94b39592d42d7c15edc2d6746f1d (diff)
Remove references to `userapi_devices` (fixes #2259)
Diffstat (limited to 'build/docker/postgres/create_db.sh')
-rwxr-xr-xbuild/docker/postgres/create_db.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/build/docker/postgres/create_db.sh b/build/docker/postgres/create_db.sh
index 9093738e..27d2a4df 100755
--- a/build/docker/postgres/create_db.sh
+++ b/build/docker/postgres/create_db.sh
@@ -1,5 +1,5 @@
#!/bin/sh
-for db in userapi_accounts userapi_devices mediaapi syncapi roomserver keyserver federationapi appservice mscs; do
+for db in userapi_accounts mediaapi syncapi roomserver keyserver federationapi appservice mscs; do
createdb -U dendrite -O dendrite dendrite_$db
done