Skip to content

Latest commit

 

History

History
12 lines (9 loc) · 214 Bytes

Changelog.md

File metadata and controls

12 lines (9 loc) · 214 Bytes

Changelog

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;