Columns
| Column | Type | Size | Nulls | Auto | Default | Children | Parents | Comments | ||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| film_id | serial | 10 | √ | nextval('film_film_id_seq'::regclass) |
|
|
||||||||
| title | varchar | 255 | null |
|
|
|||||||||
| description | text | 2147483647 | √ | null |
|
|
||||||||
| release_year | year | 10 | √ | null |
|
|
||||||||
| language_id | int2 | 5 | null |
|
|
|||||||||
| original_language_id | int2 | 5 | √ | null |
|
|
||||||||
| rental_duration | int2 | 5 | 3 |
|
|
|||||||||
| rental_rate | numeric | 4,2 | 4.99 |
|
|
|||||||||
| length | int2 | 5 | √ | null |
|
|
||||||||
| replacement_cost | numeric | 5,2 | 19.99 |
|
|
|||||||||
| rating | mpaa_rating | 2147483647 | √ | 'G'::mpaa_rating |
|
|
||||||||
| last_update | timestamp | 29,6 | now() |
|
|
|||||||||
| special_features | _text | 2147483647 | √ | null |
|
|
||||||||
| fulltext | tsvector | 2147483647 | null |
|
|
Indexes
| Constraint Name | Type | Sort | Column(s) |
|---|---|---|---|
| film_pkey | Primary key | Asc | film_id |
| film_fulltext_idx | Performance | Asc | fulltext |
| idx_fk_language_id | Performance | Asc | language_id |
| idx_fk_original_language_id | Performance | Asc | original_language_id |
| idx_title | Performance | Asc | title |