diff options
author | Martin Czygan <martin.czygan@gmail.com> | 2020-11-17 22:25:08 +0100 |
---|---|---|
committer | Martin Czygan <martin.czygan@gmail.com> | 2020-11-17 22:25:08 +0100 |
commit | 01e95738c6d2bbbb4eb07a0e48db7866bfdbc302 (patch) | |
tree | 1d17a8593ad3742f7246f25d9b25411b5a7c8665 | |
parent | 2868d23d0a2746954156cb9d36ed53512ed012a9 (diff) | |
download | fuzzycat-01e95738c6d2bbbb4eb07a0e48db7866bfdbc302.tar.gz fuzzycat-01e95738c6d2bbbb4eb07a0e48db7866bfdbc302.zip |
cleanup sql stuff for now
-rw-r--r-- | sql/sslookup.sql | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/sql/sslookup.sql b/sql/sslookup.sql deleted file mode 100644 index 768e40a..0000000 --- a/sql/sslookup.sql +++ /dev/null @@ -1,13 +0,0 @@ - --- Example: Low-energy nanotube chip says 'hello world' -CREATE TABLE IF NOT EXISTS sslookup ( - id INTEGER PRIMARY KEY, - title_prefix TEXT, - title_suffix TEXT, - contribs TEXT -); - -CREATE INDEX idx_sslookup_title ON sslookup (title_prefix, title_suffix); -CREATE INDEX idx_sslookup_title_prefix ON sslookup (title_prefix); -CREATE INDEX idx_sslookup_title_suffix ON sslookup (title_suffix); - |