summaryrefslogtreecommitdiffstats
path: root/backend/database
diff options
context:
space:
mode:
Diffstat (limited to 'backend/database')
-rw-r--r--backend/database/datamodel.graphql1
-rw-r--r--backend/database/prisma.yml8
2 files changed, 4 insertions, 5 deletions
diff --git a/backend/database/datamodel.graphql b/backend/database/datamodel.graphql
index 605e242..c383b23 100644
--- a/backend/database/datamodel.graphql
+++ b/backend/database/datamodel.graphql
@@ -16,6 +16,7 @@ type User {
posts: [Post!]!
website: String
age: Int
+ dummy: String
}
type Item {
diff --git a/backend/database/prisma.yml b/backend/database/prisma.yml
index 6570be2..ce652ef 100644
--- a/backend/database/prisma.yml
+++ b/backend/database/prisma.yml
@@ -1,12 +1,12 @@
# the name for the service (will be part of the service's HTTP endpoint)
-service: my-own
+service: sick-fits
# the cluster and stage the service is deployed to
stage: ${env:PRISMA_STAGE}
# to disable authentication:
-# disableAuth: true
-secret: ${env:PRISMA_SECRET}
+disableAuth: true
+# secret: ${env:PRISMA_SECRET}
# the file path pointing to your data model
datamodel: datamodel.graphql
@@ -17,5 +17,3 @@ datamodel: datamodel.graphql
cluster: ${env:PRISMA_CLUSTER}
-
-disableAuth: true \ No newline at end of file