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 Orders ( | |
| id INTEGER PRIMARY KEY, | |
| customer TEXT NOT NULL, | |
| value REAL NOT NULL, | |
| placed_at TEXT NOT NULL | |
| ); | |
| CREATE TABLE Payments ( | |
| id INTEGER PRIMARY KEY, | |
| order_id INTEGER NOT NULL, |