abtest/ext_tables.sql
Daniel Siepmann 9f0e6cd6c5
Integrate Matomo tracking for A/B Testing (#2)
* Adds new fields to pages.
* Adds new event handler and integration to add necessary JS to track
  experiment with variant.
2023-03-06 14:39:21 +01:00

9 lines
323 B
SQL

CREATE TABLE pages (
tx_abtest_variant int(11) DEFAULT '0' NOT NULL,
tx_abtest_cookie_time int(11) DEFAULT 604800 NOT NULL,
tx_abtest_counter int(11) DEFAULT '0' NOT NULL,
tx_abtest_matomo_experiment_id varchar(255) DEFAULT '' NOT NULL,
tx_abtest_matomo_variant_id varchar(255) DEFAULT '' NOT NULL,
);