| # | Column Name | Nullable | Data Type | Max Length | Description |
|---|---|---|---|---|---|
| 1 | frequency_id | integer | 0 | The primary key of this table, which is also a serial field. | |
| 2 | frequency_code | character varying | 12 | The code given to the interval of time. | |
| 3 | frequency_name | character varying | 50 | The name given to the interval of time, which is unique field. |
| # | Column Name | Key Name | References |
|---|
| Index Name | Owner | Access Method | Definition | Description |
|---|---|---|---|---|
| frequencies_pkey | postgres | btree | frequency_id | |
| frequencies_frequency_name_uix | postgres | btree | upper(frequency_name::text) | |
| frequencies_frequency_code_uix | postgres | btree | upper(frequency_code::text) |
| Constraint Name | Description |
|---|
| # | Column Name | Default |
|---|---|---|
| 1 | frequency_id | nextval('core.frequencies_frequency_id_seq'::regclass) |
| Trigger Name | Targets | On Event | Timing | Condition | Order | Orientation | Description |
|---|