1CREATE TABLE git (repo TEXT PRIMARY KEY, timestamp INTEGER, status TEXT);
2CREATE UNIQUE INDEX idx_git ON git(repo);
3
4
5
6
7