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
| CREATE TABLE Contacts | |
| ( | |
| id INTEGER NOT NULL GENERATED ALWAYS AS IDENTITY (START WITH 0, INCREMENT BY 1), | |
| firstname VARCHAR(30), | |
| lastname VARCHAR(30), | |
| telephone VARCHAR(15), | |
| email VARCHAR(30), | |
| created TIMESTAMP DEFAULT CURRENT_TIMESTAMP, | |
| CONSTRAINT primary_key PRIMARY KEY (id) | |
| ) ; |