Skip to content
This repository has been archived by the owner on Aug 31, 2023. It is now read-only.

Latest commit

 

History

History
10 lines (6 loc) · 349 Bytes

UPGRADE.md

File metadata and controls

10 lines (6 loc) · 349 Bytes

Upgrading from 0.x to 1.x

The main difference is the move to multiple A/B testing seeds connected to a lifetime. You will probably want to run some kind of migration like:

INSERT INTO seed SELECT NULL, id, 'default', seed FROM lifetime

ALTER TABLE lifetime DROP seed

You can then get the old seed by doing $lifetime->getSeed('default')