File: tag_index.sql

package info (click to toggle)
stacks 2.2%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 3,108 kB
  • sloc: cpp: 36,453; php: 4,059; sh: 2,122; perl: 1,163; python: 497; sql: 389; makefile: 148
file content (25 lines) | stat: -rw-r--r-- 907 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
SET default_storage_engine=MYISAM;

create table tag_index (
       id	   int unsigned not null primary key auto_increment,
       batch_id    int unsigned not null,
       sample_id   int unsigned not null,
       tag_id      int unsigned not null,
       con_tag_id  int unsigned not null,
       depth       int unsigned not null,
       snps        int unsigned not null,
       catalog_id  int unsigned not null,
       deleveraged bool default false,
       blacklisted bool default false,
       removed     bool default false,
       INDEX batch_index (batch_id),
       INDEX sample_index (sample_id),
       INDEX tag_index (tag_id),
       INDEX con_tag_index (con_tag_id),
       INDEX depth_index (depth),
       INDEX snps_index (snps),
       INDEX delv_index (deleveraged),
       INDEX black_index (blacklisted),
       INDEX rem_index (removed),
       INDEX catalog_index (catalog_id)
);