diff options
author | Jochen Topf <jochen@topf.org> | 2014-09-29 16:14:53 +0200 |
---|---|---|
committer | Jochen Topf <jochen@topf.org> | 2014-09-29 16:14:53 +0200 |
commit | a7cf35fd568ea633457e18cf95dbe64765ebfb2d (patch) | |
tree | 965d07611c39f5c6cf9902ce2e83a8b3b8af80bc /sources/db | |
parent | 0fdfaca9dfad26abe8f6e25ef12ca1824d2e0c10 (diff) | |
download | taginfo-a7cf35fd568ea633457e18cf95dbe64765ebfb2d.tar taginfo-a7cf35fd568ea633457e18cf95dbe64765ebfb2d.tar.gz |
Remove in_josm and in_potlatch columns. (Were unused for a while.)
Diffstat (limited to 'sources/db')
-rw-r--r-- | sources/db/pre.sql | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/sources/db/pre.sql b/sources/db/pre.sql index e0320ea..31c6f8b 100644 --- a/sources/db/pre.sql +++ b/sources/db/pre.sql @@ -29,8 +29,6 @@ CREATE TABLE keys ( in_wiki INTEGER DEFAULT 0, in_wiki_en INTEGER DEFAULT 0, in_projects INTEGER DEFAULT 0, - in_josm INTEGER DEFAULT 0, - in_potlatch INTEGER DEFAULT 0, characters VARCHAR ); @@ -74,9 +72,7 @@ CREATE TABLE tags ( object_id INTEGER, in_wiki INTEGER DEFAULT 0, in_wiki_en INTEGER DEFAULT 0, - in_projects INTEGER DEFAULT 0, - in_josm INTEGER DEFAULT 0, - in_potlatch INTEGER DEFAULT 0 + in_projects INTEGER DEFAULT 0 ); DROP TABLE IF EXISTS key_combinations; |