Mercurial > repos > stheil > taxonomy_sqlite
comparison taxonomyIndex.sql @ 0:4ecb2ce50254 draft default tip
Uploaded
author | stheil |
---|---|
date | Mon, 26 Oct 2015 10:59:07 -0400 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:4ecb2ce50254 |
---|---|
1 PRAGMA encoding = "UTF-8"; | |
2 PRAGMA default_synchronous = OFF; | |
3 | |
4 CREATE INDEX tax_id ON names(tax_id); | |
5 CREATE INDEX unique_name ON names(unique_name); | |
6 CREATE INDEX name_txt ON names(name_txt); | |
7 | |
8 CREATE INDEX parent_tax_id ON nodes(parent_tax_id); | |
9 | |
10 CREATE INDEX nucl_taxid ON gi_taxid_nucl(tax_id); | |
11 CREATE INDEX prot_taxid ON gi_taxid_prot(tax_id); |