This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ------------------------------------------------------------ | |
| -- NOMOR 1 — DDL: CREATE TABLES (POSTGRESQL VERSION) | |
| ------------------------------------------------------------ | |
| -- 1. Maskapai | |
| CREATE TABLE IF NOT EXISTS Maskapai ( | |
| ID CHAR(6) PRIMARY KEY, | |
| Nama VARCHAR(255), | |
| Negara_Asal VARCHAR(255) | |
| ); |