reset-infra 1.0.7 → 1.0.8

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "reset-infra",
3
- "version": "1.0.7",
3
+ "version": "1.0.8",
4
4
  "description": "ReSet – Database infrastructure, Prisma migrations & Zod schema generation",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -41,6 +41,7 @@ model User {
41
41
  created_at DateTime @default(now())
42
42
  updated_at DateTime @default(now()) @updatedAt
43
43
  sponsor_code String? @unique @db.VarChar(10)
44
+ avatar_url String @default("https://api.dicebear.com/7.x/pixel-art/svg?seed=default") @db.Text
44
45
 
45
46
  addictions UserAddiction[]
46
47
  daily_logs DailyLog[]