implemented device name

This commit is contained in:
2025-06-17 16:46:44 +02:00
parent f765d5bdf0
commit e33fa804fa
24 changed files with 1004 additions and 190 deletions

View File

@ -11,6 +11,7 @@ import {
export const haexSettings = sqliteTable('haex_settings', {
id: text().primaryKey(),
key: text(),
type: text(),
value: text(),
})
export type InsertHaexSettings = typeof haexSettings.$inferInsert