release


Columns

Column Type Size Nulls Auto Default Children Parents Comments
id bigserial 19 nextval('release_id_seq'::regclass)
title varchar 255 null
description text 2147483647 null
cover int8 19 null
asset.id release_cover_foreignR
link varchar 255 null
platform text 2147483647 null
channel text 2147483647 null
version varchar 255 null
latest bool 1 false
force_update bool 1 false
created_at timestamptz 35,6 CURRENT_TIMESTAMP

Indexes

Constraint Name Type Sort Column(s)
release_pkey Primary key Asc id
release_platform_channel_version_unique Must be unique Asc/Asc/Asc platform + channel + version

Check Constraints

Constraint Name Constraint
release_channel_check ((channel = ANY (ARRAY['appStore'::text, 'googlePlay'::text])))
release_platform_check ((platform = ANY (ARRAY['ios'::text, 'android'::text])))

Relationships