mirror of
https://github.com/delight-im/PHP-Auth.git
synced 2025-08-06 16:16:29 +02:00
Describe required changes to MySQL schema in migration guide
This commit is contained in:
@@ -23,7 +23,8 @@ $ composer update delight-im/auth
|
|||||||
|
|
||||||
```sql
|
```sql
|
||||||
ALTER TABLE users
|
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:
|
* The SQLite database schema has changed. Use the statement below to update your database:
|
||||||
|
Reference in New Issue
Block a user