Created
          March 12, 2018 22:07 
        
      - 
      
- 
        Save lastmjs/e0a0f296cceec242592ccd32ff3e2ea6 to your computer and use it in GitHub Desktop. 
Revisions
- 
        lastmjs created this gist Mar 12, 2018 .There are no files selected for viewingThis file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,10 @@ # All types defined here will be fed through the Prisma generation process # Essentially, all of these types become database tables type User { id: ID! @unique createdAt: DateTime! @private updatedAt: DateTime! @private email: String! @unique @userOwns(field: "id") password: String! @private }