diff options
author | Jochen Topf <jochen@topf.org> | 2013-01-24 15:33:11 +0100 |
---|---|---|
committer | Jochen Topf <jochen@topf.org> | 2013-01-24 15:33:11 +0100 |
commit | 55550a88ff517d48ca6e56f720c4080fdb569ac9 (patch) | |
tree | 321e30c5f49533849cd3802641a7e86d23f79a5e /sources/db | |
parent | 62e3e5509f05385eb1414172c53f5be9255bc520 (diff) | |
download | taginfo-55550a88ff517d48ca6e56f720c4080fdb569ac9.tar taginfo-55550a88ff517d48ca6e56f720c4080fdb569ac9.tar.gz |
Add in_wiki and in_wiki_en columns to tags and selected_tags table
Diffstat (limited to 'sources/db')
-rw-r--r-- | sources/db/pre.sql | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sources/db/pre.sql b/sources/db/pre.sql index 8353b2f..5654074 100644 --- a/sources/db/pre.sql +++ b/sources/db/pre.sql @@ -133,6 +133,8 @@ CREATE TABLE selected_tags ( count_all INTEGER DEFAULT 0, count_nodes INTEGER DEFAULT 0, count_ways INTEGER DEFAULT 0, - count_relations INTEGER DEFAULT 0 + count_relations INTEGER DEFAULT 0, + in_wiki INTEGER, + in_wiki_en INTEGER ); |