mirror of
https://github.com/DanielSiepmann/tracking.git
synced 2025-01-19 10:19:25 +01:00
Daniel Siepmann
44ca6a2d3c
Extract operating system from user agent and store it in database record. Another widget is added which displays the page views per operating system. An command is provided which will update existing data.
6 lines
177 B
SQL
6 lines
177 B
SQL
CREATE TABLE tx_tracking_pageview (
|
|
url text,
|
|
user_agent text,
|
|
operating_system varchar(255) DEFAULT '' NOT NULL,
|
|
type int(11) unsigned DEFAULT '0' NOT NULL,
|
|
);
|