Skip to content

Commit

Permalink
Update prisma/schema.prisma (#2)
Browse files Browse the repository at this point in the history
Co-authored-by: codieai[bot] <146276760+codieai[bot]@users.noreply.github.com>
  • Loading branch information
codieai[bot] authored Oct 11, 2023
1 parent 1a39fce commit c1ce9d3
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions prisma/schema.prisma
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
// This is your Prisma schema file,
// learn more about it in the docs: https://pris.ly/d/prisma-schema

generator client {
provider = "prisma-client-js"
}
Expand All @@ -9,3 +6,9 @@ datasource db {
provider = "postgresql"
url = env("DATABASE_URL")
}

model Tag {
id String @id @default(uuid()) @map("tag_id")
name String
description String
}

0 comments on commit c1ce9d3

Please sign in to comment.