@danielcok17/prisma-db 1.20.22 → 1.20.23

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": "@danielcok17/prisma-db",
3
- "version": "1.20.22",
3
+ "version": "1.20.23",
4
4
  "description": "Shared Prisma schema for Legal AI applications",
5
5
  "repository": {
6
6
  "type": "git",
@@ -0,0 +1,5 @@
1
+ -- AlterTable: Add isicValidUntil column to User
2
+ ALTER TABLE "User" ADD COLUMN IF NOT EXISTS "isicValidUntil" TIMESTAMP(3);
3
+
4
+ -- CreateIndex: Unique constraint on isicJscp
5
+ CREATE UNIQUE INDEX IF NOT EXISTS "User_isicJscp_key" ON "User"("isicJscp");