summaryrefslogtreecommitdiffstats
path: root/backend/database
diff options
context:
space:
mode:
authorWes Bos <wesbos@gmail.com>2018-02-02 15:23:20 -0500
committerWes Bos <wesbos@gmail.com>2018-02-02 15:23:20 -0500
commiteabff7cd396d1f37ceb929e666f082ce57f07919 (patch)
tree6fbd487688ee9e53bada734288994c35b732150e /backend/database
parentcd0b07b3adb36fb5ec098f9e511ab45d774fee7b (diff)
updateS
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