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
No known key found for this signature in database
GPG key ID: 8271FDFFD9E0CCBD
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"
})