fix(engine): use physical auction enum name

This commit is contained in:
2026-07-30 19:16:24 +00:00
parent c68d992046
commit 78581c840f
@@ -86,7 +86,7 @@ export const createNeutralAuctionRegistrar = async (options: {
SELECT type, count(*) AS count SELECT type, count(*) AS count
FROM auction FROM auction
WHERE host_general_id = 0 WHERE host_general_id = 0
AND type IN ('BUY_RICE'::"AuctionType", 'SELL_RICE'::"AuctionType") AND type IN ('BUY_RICE'::"auction_type", 'SELL_RICE'::"auction_type")
GROUP BY type GROUP BY type
` `
)); ));