ADDRESS
Description
This table stores information about addresses.
Columns
| Column Name | Data Type | Description |
| ID | bigint(20) | Primary key, unique identifier for each address. |
| COUNTRY_CODE | varchar(255) | The country code of the address. |
| POSTAL_CODE | varchar(255) | The postal code of the address. |
| PLACE_ADDRESS_ID | bigint(20) | Foreign key referencing the PLACE table. |
Foreign Key Relationships
- PLACE_ADDRESS_ID references PLACE(ID)