]> git.openstreetmap.org Git - nominatim.git/commitdiff
give www-data select rights on query_log
authorSarah Hoffmann <lonvia@denofr.de>
Sun, 11 Nov 2012 15:41:06 +0000 (16:41 +0100)
committerSarah Hoffmann <lonvia@denofr.de>
Sun, 11 Nov 2012 15:41:06 +0000 (16:41 +0100)
sql/tables.sql

index efbe323ec251fe9c88c1d5e5a84721013aa60be4..13954149926f40cda40687537330fef6d5e88ef0 100644 (file)
@@ -32,6 +32,7 @@ CREATE TABLE query_log (
   results integer
   );
 CREATE INDEX idx_query_log ON query_log USING BTREE (starttime);
+GRANT SELECT ON query_log TO "www-data" ;
 GRANT INSERT ON query_log TO "www-data" ;
 GRANT UPDATE ON query_log TO "www-data" ;