movies_development=# \d movie_showtimes_with_current_and_sold_out_with_dirty_and_expiry
    Table "public.movie_showtimes_with_current_and_sold_out"
         Column          |           Type           | Modifiers
-------------------------+--------------------------+----------- 
 name                    | character varying(256)   |
 rating_id               | character varying(16)    |
 length_minutes          | integer                  |
 id                      | integer                  |
 movie_id                | integer                  |
 theatre_id              | integer                  |
 room                    | character varying(64)    |
 start_time              | timestamp with time zone |
 theatre_name            | character varying(256)   |
 zip_code                | character varying(9)     |
 latitude                | numeric                  |
 longitude               | numeric                  |
 seats_available         | integer                  |
 purchased_tickets_count | bigint                   |
 current                 | boolean                  |
 sold_out                | boolean                  |
 dirty                   | boolean                  |
 expiry                  | timestamp with time zone |

