✨ feat: endpoint for create video service
This commit is contained in:
@ -191,6 +191,7 @@ Table video_services {
|
||||
hexColor String [not null]
|
||||
endpointVideo String [not null]
|
||||
endpointThumbnail String
|
||||
endpointDownload String
|
||||
creator users [not null]
|
||||
createdBy String [not null]
|
||||
deletedAt DateTime
|
||||
|
||||
@ -229,6 +229,7 @@ model VideoService {
|
||||
hexColor String @db.VarChar(10)
|
||||
endpointVideo String @db.Text
|
||||
endpointThumbnail String? @db.Text
|
||||
endpointDownload String?
|
||||
creator User @relation("UserVideoServices", fields: [createdBy], references: [id])
|
||||
createdBy String @db.Uuid
|
||||
deletedAt DateTime?
|
||||
|
||||
Reference in New Issue
Block a user