tracking/ext_tables.sql
Daniel Siepmann 27819c73ef
Add user agent to tracking
To enable fine grained filtering, and detect further bots / crawler to
block.
2020-02-25 22:35:25 +01:00

6 lines
122 B
SQL

CREATE TABLE tx_tracking_pageview (
url text,
user_agent text,
type int(11) unsigned DEFAULT '0' NOT NULL,
);