Add olm version

This commit is contained in:
Owen 2025-08-13 12:35:09 -07:00
parent e7df29104e
commit 1f4a7a7f6f
No known key found for this signature in database
GPG key ID: 8271FDFFD9E0CCBD
3 changed files with 23 additions and 9 deletions

View file

@ -243,6 +243,7 @@ export const olms = sqliteTable("olms", {
olmId: text("id").primaryKey(),
secretHash: text("secretHash").notNull(),
dateCreated: text("dateCreated").notNull(),
version: text("version").notNull(),
clientId: integer("clientId").references(() => clients.clientId, {
onDelete: "cascade"
})