mirror of
https://github.com/DanielSiepmann/tracking.git
synced 2024-11-13 02:36:08 +01:00
Daniel Siepmann
33685d1735
Allow Integrator to define rules to track views of records. This allows to add tracking to extensions like tx_news. Integrators are able to define matching rules on current request. If a request matches, the record is stored as individual view beside existing pageview. Relates: #14
15 lines
464 B
SQL
15 lines
464 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,
|
|
);
|
|
|
|
CREATE TABLE tx_tracking_recordview (
|
|
url text,
|
|
user_agent text,
|
|
operating_system varchar(255) DEFAULT '' NOT NULL,
|
|
record varchar(255) DEFAULT '' NOT NULL,
|
|
record_uid int(11) unsigned DEFAULT '0' NOT NULL,
|
|
record_table_name varchar(255) DEFAULT '' NOT NULL,
|
|
);
|