mod_storage_sql: Fix column name in index check for PostgreSQL

Forgot to change the column name in 9a7523ea45cb
This commit is contained in:
Kim Alvefur 2023-06-17 13:37:33 +02:00
parent 935f28230a
commit 9f0a28f1c4

View file

@ -854,7 +854,7 @@ local function upgrade_table(engine, params, apply_changes) -- luacheck: ignore
indices[row[1]] = true;
end
elseif params.driver == "PostgreSQL" then
for row in engine:select [[SELECT "relname" FROM "pg_indexes" WHERE "tablename"='prosody' AND "indexname"='prosody_index';]] do
for row in engine:select [[SELECT "indexname" FROM "pg_indexes" WHERE "tablename"='prosody' AND "indexname"='prosody_index';]] do
indices[row[1]] = true;
end
end