betterstart-cli 0.0.113 → 0.0.114

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -42,6 +42,9 @@ export const session = pgTable('session', {
42
42
 
43
43
  export const account = pgTable('account', {
44
44
  id: text('id').primaryKey(),
45
+ // Better Auth requires `issuer` and always supplies it on insert. The default only backfills
46
+ // rows that predate the column so `drizzle-kit push` stays non-destructive on existing projects.
47
+ issuer: text('issuer').notNull().default('local:credential'),
45
48
  accountId: text('account_id').notNull(),
46
49
  providerId: text('provider_id').notNull(),
47
50
  userId: text('user_id')
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "betterstart-cli",
3
- "version": "0.0.113",
3
+ "version": "0.0.114",
4
4
  "description": "A production ready dashboard,tailored for you in 5 Minutes.",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -72,6 +72,7 @@
72
72
  "@types/fs-extra": "^11.0.4",
73
73
  "@types/node": "^25.0.3",
74
74
  "@vitest/coverage-v8": "^4.1.6",
75
+ "better-auth": "^1.7.2",
75
76
  "c8": "^11.0.0",
76
77
  "istanbul-lib-coverage": "^3.2.2",
77
78
  "istanbul-lib-report": "^3.0.1",