add timeline schema

This commit is contained in:
2026-02-22 13:54:44 +01:00
parent f2ee7d773f
commit dca6ffd84d
8 changed files with 99 additions and 9 deletions

View File

@@ -10,6 +10,7 @@
}
},
"scripts": {
"auth:generate": "DOTENV_CONFIG_PATH=../../apps/web/.env pnpx @better-auth/cli generate --config src/index.ts --output ../db/src/schema/auth.ts",
"check-types": "tsc --noEmit",
"lint": "eslint ."
},

View File

@@ -16,4 +16,9 @@ export const auth = betterAuth({
enabled: true,
},
plugins: [tanstackStartCookies()],
advanced: {
database: {
generateId: "uuid",
},
},
});