-drop table if exists import_npi_log;
-CREATE TABLE import_npi_log (
- npiid integer,
- batchend timestamp,
- batchsize integer,
- starttime timestamp,
- endtime timestamp,
- event text
- );
-
---drop table IF EXISTS query_log;
-CREATE TABLE query_log (
- starttime timestamp,
- query text,
- ipaddress text,
- endtime timestamp,
- results integer
- );
-CREATE INDEX idx_query_log ON query_log USING BTREE (starttime);
-GRANT SELECT ON query_log TO "{www-user}" ;
-GRANT INSERT ON query_log TO "{www-user}" ;
-GRANT UPDATE ON query_log TO "{www-user}" ;
-