@optimatech88/titomeet-shared-lib 1.0.53 → 1.0.54
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/.env +1 -0
- package/package.json +1 -1
- package/prisma/schema.prisma +1 -0
- package/.env.example +0 -1
package/.env
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
DATABASE_URL="postgresql://postgres:postgre@localhost:5432/titomeet?schema=public"
|
package/package.json
CHANGED
package/prisma/schema.prisma
CHANGED
|
@@ -225,6 +225,7 @@ model Provider {
|
|
|
225
225
|
pricingDetails String?
|
|
226
226
|
rating Float?
|
|
227
227
|
website String?
|
|
228
|
+
location String?
|
|
228
229
|
address Address? @relation(fields: [addressId], references: [id])
|
|
229
230
|
category ProviderCategory @relation(fields: [categoryId], references: [id])
|
|
230
231
|
user User @relation(fields: [userId], references: [id])
|
package/.env.example
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
DATABASE_URL="postgresql://postgres:admin@localhost:5433/titomeet-dev?schema=public"
|