Trying to fix push notifs

This commit is contained in:
2024-09-25 10:26:00 -05:00
parent 03fc9c9c1e
commit dcc57a43bb
3 changed files with 7 additions and 5 deletions

View File

@@ -14,7 +14,7 @@ export const users = createTable(
id: serial("id").primaryKey(),
name: varchar("name", { length: 256 }),
message: varchar("message", { length: 256 }),
pushToken: varchar("push_token", { length: 256 }),
pushToken: varchar("pushToken", { length: 256 }),
createdAt: timestamp("created_at", { withTimezone: true })
.default(sql`CURRENT_TIMESTAMP`)
.notNull(),