Skip to content

v0.14.2

Compare
Choose a tag to compare
@wansing wansing released this 20 May 20:09
· 4 commits to master since this release

With v0.14.0 (2023-05-20), a database schema upgrade is required:

BEGIN TRANSACTION;
ALTER TABLE member ADD COLUMN bounces BOOLEAN NOT NULL default 0;
UPDATE member SET bounces = admin;
COMMIT;