From c118116a52c643114e6a0b7517eb668f9e8e0f6b Mon Sep 17 00:00:00 2001 From: Marco Date: Sun, 30 Jul 2017 14:41:28 +0200 Subject: [PATCH] Describe required changes to MySQL schema in migration guide --- Migration.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Migration.md b/Migration.md index 1e43390..486ae25 100644 --- a/Migration.md +++ b/Migration.md @@ -23,7 +23,8 @@ $ composer update delight-im/auth ```sql ALTER TABLE users - ADD COLUMN roles_mask INT(10) UNSIGNED NOT NULL DEFAULT 0 AFTER verified; + ADD COLUMN roles_mask INT(10) UNSIGNED NOT NULL DEFAULT 0 AFTER verified, + ADD COLUMN resettable TINYINT(1) UNSIGNED NOT NULL DEFAULT 1 AFTER verified; ``` * The SQLite database schema has changed. Use the statement below to update your database: