From a599771bd58b8dbc9bcb252482700344f4c53626 Mon Sep 17 00:00:00 2001 From: Marco Date: Sun, 30 Jul 2017 14:42:21 +0200 Subject: [PATCH] Describe required changes to SQLite schema in migration guide --- Migration.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Migration.md b/Migration.md index 486ae25..776e59f 100644 --- a/Migration.md +++ b/Migration.md @@ -31,7 +31,8 @@ $ composer update delight-im/auth ```sql ALTER TABLE users - ADD COLUMN "roles_mask" INTEGER NOT NULL CHECK ("roles_mask" >= 0) DEFAULT "0"; + ADD COLUMN "roles_mask" INTEGER NOT NULL CHECK ("roles_mask" >= 0) DEFAULT "0", + ADD COLUMN "resettable" INTEGER NOT NULL CHECK ("resettable" >= 0) DEFAULT "1"; ``` * The `Base64` class is now an external module and has been moved from the namespace `Delight\Auth` to the namespace `Delight\Base64`. The interface and the return values are not compatible with those from previous versions anymore.