models

-1 rows


Description

Stores information for model instances.

Columns

Column Type Size Nulls Auto Default Children Parents Comments
model_id serial 10 nextval('models_model_id_seq'::regclass)

Unique identifier for the model instance. Auto-incremented upon insertion.

model_name text 2147483647 null

The name of the model.

model_type_id int4 10 null
models_meta.model_type_id models_model_type_id_fkey R

Refers to the make of the model defined in models_meta table.

model_physical_params _model_param_t 2147483647 null

Physical parameters of the model.

model_mathematical_params _model_param_t 2147483647 null

Mathematical parameters of the model.

model_computational_params _model_param_t 2147483647 null

Computational parameters of the model.

model_version text 2147483647 null

The version of the model.

model_stage model_stage_e 2147483647 null

The stage of the model. Can be dev, stag, or prod.

other_details jsonb 2147483647 null

Other details about the model.

Indexes

Constraint Name Type Sort Column(s)
models_pkey Primary key Asc model_id
models_prod_version_idx Must be unique Asc model_type_id

Relationships