17 lines
545 B
Plaintext
17 lines
545 B
Plaintext
|
|
model ApplicationReleasedInfo {
|
||
|
|
id String @id @default(uuid())
|
||
|
|
version String
|
||
|
|
build_number String
|
||
|
|
is_minimum_supported Boolean @default(false)
|
||
|
|
release_type ApplicationReleaseType
|
||
|
|
platform ApplicationPlatform
|
||
|
|
notes Json?
|
||
|
|
|
||
|
|
release_date DateTime @default(now()) @db.Timestamp(0)
|
||
|
|
|
||
|
|
created_at DateTime @default(now()) @db.Timestamp(0)
|
||
|
|
updated_at DateTime @updatedAt() @db.Timestamp(0)
|
||
|
|
|
||
|
|
@@map("application_released_info")
|
||
|
|
}
|