mirror of
https://github.com/werkraum-media/abtest.git
synced 2024-11-14 23:56:11 +01:00
Daniel Siepmann
9f0e6cd6c5
* Adds new fields to pages. * Adds new event handler and integration to add necessary JS to track experiment with variant.
8 lines
323 B
SQL
8 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,
|
|
);
|