Skip to content
Snippets Groups Projects
Unverified Commit 656ac99e authored by Mashiro's avatar Mashiro Committed by GitHub
Browse files

Fix ambiguous column names in `tootctl search deploy` (#18993)

parent 461239db
No related branches found
No related tags found
No related merge requests found
......@@ -84,6 +84,6 @@ class Importer::StatusesIndexImporter < Importer::BaseImporter
end
def local_statuses_scope
Status.local.select('id, coalesce(reblog_of_id, id) as status_id')
Status.local.select('"statuses"."id", COALESCE("statuses"."reblog_of_id", "statuses"."id") AS status_id')
end
end
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment