From 2839743c46552cd0aca53bfa9309021df67864eb Mon Sep 17 00:00:00 2001 From: Marco Date: Mon, 7 Aug 2017 19:26:25 +0200 Subject: [PATCH] Describe required changes to MySQL schema in migration guide --- Migration.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Migration.md b/Migration.md index 70d2fdb..33bdbcf 100644 --- a/Migration.md +++ b/Migration.md @@ -35,6 +35,9 @@ $ composer update delight-im/auth ALTER TABLE users_confirmations CHANGE COLUMN user_id user_id INT(10) UNSIGNED NOT NULL; + + ALTER TABLE users_confirmations + ADD INDEX user_id (user_id ASC); ``` * The SQLite database schema has changed. Use the statement below to update your database: