models_meta

-1 rows


Description

Stores information for types of models.

Columns

Column Type Size Nulls Auto Default Children Parents Comments
model_type_id serial 10 nextval('models_meta_model_type_id_seq'::regclass)
models.model_type_id models_model_type_id_fkey R

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

model_type model_type_e 2147483647 null

The type of model. Can be lookup_table, ecm, spm, tank, p2d, or other.

cell_type_id int4 10 null
cells_meta.cell_type_id models_meta_cell_type_id_fkey R

The type of battery the model is for. References the cell_type_id in the cells_meta table.

model_type_name text 2147483647 null

The name of the model type.

model_type_parameters jsonb 2147483647 null

The parameters of the model type.

other_details jsonb 2147483647 null

Other details about the model type.

Indexes

Constraint Name Type Sort Column(s)
models_meta_pkey Primary key Asc model_type_id

Relationships