2020-02-07 10:27:07 +01:00
|
|
|
CREATE TABLE tx_tracking_pageview (
|
|
|
|
url text,
|
2020-02-13 12:26:19 +01:00
|
|
|
user_agent text,
|
2020-04-01 21:04:32 +02:00
|
|
|
operating_system varchar(255) DEFAULT '' NOT NULL,
|
2020-02-07 10:27:07 +01:00
|
|
|
type int(11) unsigned DEFAULT '0' NOT NULL,
|
|
|
|
);
|