aboutsummaryrefslogtreecommitdiffstats
path: root/prisma/schema.prisma
blob: dc9edf732e7f103bdc14c3c0e28c2c7ef0e97c1c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
generator client {
  provider = "prisma-client-js"
}

datasource db {
  provider = "postgresql"
  url      = env("DATABASE_URL")
}

model KaraokeSong {
  id                Int      @id @default(autoincrement())
  title             String   @map("title")
  artist            String   @map("artist")
  linkToMediaFile1  String   @map("link_to_media_file_1")
  linkToMediaFile2  String?  @map("link_to_media_file_2")
  linkToLrc         String   @map("link_to_lrc")
  linkToSrv3        String   @map("link_to_srv3")
  thumbnail         String?  @map("thumbnail")
  @@map("karaoke_songs")
}
send patches to the email below
yukais@pinapelz.com
include the subject [PATCH repo_name]
pinapelz.com
homepage