From 6cf955ed52b8420b83e2021187a3a500be1e0eaf Mon Sep 17 00:00:00 2001 From: Marco Date: Sat, 29 Jul 2017 17:59:14 +0200 Subject: [PATCH] Describe required changes to MySQL schema in migration guide --- Migration.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/Migration.md b/Migration.md index d2d8981..65aa0e5 100644 --- a/Migration.md +++ b/Migration.md @@ -10,6 +10,13 @@ * The database schema has changed. + * The MySQL database schema has changed. Use the statement below to update your database: + + ```sql + ALTER TABLE users + ADD COLUMN roles_mask INT(10) UNSIGNED NOT NULL DEFAULT 0 AFTER verified; + ``` + * The outputs produced by the `Base64` class are not compatible with those from previous versions anymore. * The `Base64` class is now an external module and has been moved from the namespace `Delight\Auth` to the namespace `Delight\Base64`.