@optimatech88/titomeet-shared-lib 1.0.44 → 1.0.45

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": "@optimatech88/titomeet-shared-lib",
3
- "version": "1.0.44",
3
+ "version": "1.0.45",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "scripts": {
@@ -0,0 +1,2 @@
1
+ -- AlterTable
2
+ ALTER TABLE "public"."EventPrice" ADD COLUMN "totalSeats" INTEGER NOT NULL DEFAULT 1;
@@ -112,6 +112,7 @@ model EventPrice {
112
112
  amount Float
113
113
  description String?
114
114
  eventId String
115
+ totalSeats Int @default(1)
115
116
  createdAt DateTime @default(now())
116
117
  updatedAt DateTime @updatedAt
117
118
  event Event @relation(fields: [eventId], references: [id])