Support multiple versions of rooms

This commit is contained in:
Cadence Ember
2025-11-26 15:43:48 +13:00
parent e6c30f80b5
commit a441c476f8
29 changed files with 520 additions and 349 deletions
+2 -2
View File
@@ -21,8 +21,8 @@ test("orm: select: get pluck works", t => {
})
test("orm: select: get, where and pluck works", t => {
const channelID = select("message_channel", "channel_id", {message_id: "1128118177155526666"}).pluck().get()
t.equal(channelID, "112760669178241024")
const emojiName = select("emoji", "name", {emoji_id: "230201364309868544"}).pluck().get()
t.equal(emojiName, "hippo")
})
test("orm: select: all, where and pluck works on multiple columns", t => {