2026-04-22 21:55:40 +03:30
|
|
|
model ApplicationReleasedInfo {
|
2026-04-23 20:59:39 +03:30
|
|
|
id String @id @default(ulid())
|
2026-04-22 21:55:40 +03:30
|
|
|
version String
|
|
|
|
|
build_number String
|
|
|
|
|
is_minimum_supported Boolean @default(false)
|
|
|
|
|
release_type ApplicationReleaseType
|
|
|
|
|
platform ApplicationPlatform
|
|
|
|
|
notes Json?
|
2026-05-07 20:30:24 +03:30
|
|
|
release_date DateTime @default(now()) @db.Timestamp(0)
|
|
|
|
|
created_at DateTime @default(now()) @db.Timestamp(0)
|
|
|
|
|
updated_at DateTime @updatedAt @db.Timestamp(0)
|
2026-04-22 21:55:40 +03:30
|
|
|
|
|
|
|
|
@@map("application_released_info")
|
|
|
|
|
}
|