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

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