Send version and try to be reverse compatible

This commit is contained in:
Owen
2025-06-19 16:39:44 -04:00
parent acf25e8ad7
commit bd7e96b8af
3 changed files with 96 additions and 1 deletions

View File

@@ -148,6 +148,7 @@ export const newts = sqliteTable("newt", {
newtId: text("id").primaryKey(),
secretHash: text("secretHash").notNull(),
dateCreated: text("dateCreated").notNull(),
version: text("version"),
siteId: integer("siteId").references(() => sites.siteId, {
onDelete: "cascade"
})