1CREATE TABLE bibtex (key PRIMARY KEY, entry);
2CREATE TABLE strings (string PRIMARY KEY, entry);
3CREATE UNIQUE INDEX idx_key ON bibtex(key);
4CREATE UNIQUE INDEX idx_string ON strings(string);
5
6