summary refs log tree commit diff stats
path: root/lib
diff options
context:
space:
mode:
authorKelly Rauchenberger <fefferburbia@gmail.com>2018-09-26 21:40:44 -0400
committerKelly Rauchenberger <fefferburbia@gmail.com>2018-09-26 21:40:44 -0400
commit3a8bfa95a5df04d97f05545d5bb8df5f3c3f96a3 (patch)
treee4478f57fe5e3faa57274d3b79c636ea657ab3a0 /lib
parenta9188cbc6b3b9d26e675213e3834afdbd06296f6 (diff)
downloadverbly-3a8bfa95a5df04d97f05545d5bb8df5f3c3f96a3.tar.gz
verbly-3a8bfa95a5df04d97f05545d5bb8df5f3c3f96a3.tar.bz2
verbly-3a8bfa95a5df04d97f05545d5bb8df5f3c3f96a3.zip
Removed unnecessary ROWIDs from database schema
The generator also now sorts and uniq's the WordNet files for antonymy, classification, and pertainymy/mannernymy, because those files contained duplicate rows, and the join tables without ROWIDs now enforce a uniqueness constraint.

This constitutes a minor database update -- the new database is compatible with d1.0, but is ~12MB smaller.

refs #6
Diffstat (limited to 'lib')
-rw-r--r--lib/version.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/version.h b/lib/version.h index 41ab79e..0404f5f 100644 --- a/lib/version.h +++ b/lib/version.h
@@ -4,7 +4,7 @@
4namespace verbly { 4namespace verbly {
5 5
6 const int DATABASE_MAJOR_VERSION = 1; 6 const int DATABASE_MAJOR_VERSION = 1;
7 const int DATABASE_MINOR_VERSION = 0; 7 const int DATABASE_MINOR_VERSION = 1;
8 8
9}; 9};
10 10