abtest/ext_tables.sql
Daniel Siepmann 604110e737
Initial migration
We will use and maintain the extension for one of our customers.
We add our basic setup.
We add tests.
We refactor code.
We use newer APIs of TYPO3.

We will integrate Matomo A/B Testing afterwards as next step.
2023-03-06 10:41:39 +01:00

6 lines
186 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
);