| 1 | zip_code_id | | bigint | 0 | The primary key of this table, which is also a bigserial field. |
| 2 | state_id | | integer | 0 | Foreign key to the table core.states |
| 3 | code | | character varying | 12 | ZIP code of the area. |
| 4 | zip_code_type_id | | integer | 0 | Foreign key to the table core.zip_code_types. |
| 5 | city | | character varying | 100 | Name of the city, |
| 6 | lat | | numeric | 0 | Latitude of the area. |
| 7 | lon | | numeric | 0 | Longitude of the area. |
| 8 | x_axis | | numeric | 0 | X-axis of the ZIP code. |
| 9 | y_axis | | numeric | 0 | Y-axis of the ZIP code. |
| 10 | z_axis | | numeric | 0 | Z-axis of the ZIP code. |
| 11 | audit_user_id | | integer | 0 | Contains the id of the user who last inserted or updated the corresponding row. |
| 12 | audit_ts | | timestamp with time zone | 0 | Contains the date and timestamp of the last insert or update action. |