Columns
| Column | Type | Size | Nulls | Auto | Default | Children | Parents | Comments | |||
|---|---|---|---|---|---|---|---|---|---|---|---|
| customer_id | serial | 10 | √ | nextval('customers_customer_id_seq'::regclass) |
|
|
Unique identifier for the customer. Auto-incremented upon insertion. |
||||
| customer_name | text | 2147483647 | √ | null |
|
|
Name of the customer. |
Indexes
| Constraint Name | Type | Sort | Column(s) |
|---|---|---|---|
| customers_pkey | Primary key | Asc | customer_id |
| customers_customer_name_key | Must be unique | Asc | customer_name |

