Columns
Column | Type | Size | Nulls | Auto | Children | Parents | Comments | ||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|
season_id | int4 | 10 | √ |
|
|
Primary key (automatically incremented). |
|||||||
date_updated | timestamptz | 35,6 | √ |
|
|
||||||||
season_name | varchar(20) | 20 | √ |
|
|
Name of the season, e.g., Winter, Spring. |
|||||||
season_type | varchar(30) | 30 | √ |
|
|
Descriptive category for the season, such as meteorological or astronomical. |
|||||||
season_type_id | int4 | 10 | √ |
|
|
Specifies the season type. |
|||||||
sort_order | int2 | 5 | √ |
|
|
Specifies the display order of seasons. |
Indexes
Constraint Name | Type | Sort | Column(s) |
---|---|---|---|
tbl_seasons_pkey | Primary key | Asc | season_id |
tbl_seasons_season_name_key | Must be unique | Asc | season_name |
tbl_seasons_season_name_unique | Must be unique | Asc | season_name |