1
0
mirror of https://github.com/delight-im/PHP-Auth.git synced 2025-08-04 15:17:28 +02:00

Describe required changes to MySQL schema in migration guide

This commit is contained in:
Marco
2017-07-29 17:59:14 +02:00
parent 8c2c32f9dc
commit 6cf955ed52

View File

@@ -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`.