CREATE INDEX statements on table page, closes #618

This commit is contained in:
Simon Willison 2019-11-09 17:29:36 -08:00
commit a5defb684f
3 changed files with 46 additions and 1 deletions

View file

@ -514,6 +514,7 @@ CREATE TABLE compound_three_primary_keys (
content text,
PRIMARY KEY (pk1, pk2, pk3)
);
CREATE INDEX idx_compound_three_primary_keys_content ON compound_three_primary_keys(content);
CREATE TABLE foreign_key_references (
pk varchar(30) primary key,