Comment Mentions: Fixed and tweaks during review of changes

- Added advisory on role permission form to advise which allow listing
  of users/roles.
- Updated database config to avoid PHP8.5 deprecation.
- Tweaked migration to remove unused index.
- Fixed test namespace.
This commit is contained in:
Dan Brown
2025-12-18 17:15:29 +00:00
parent 90fc02c57f
commit 51f9b63db0
6 changed files with 19 additions and 8 deletions

View File

@@ -15,7 +15,7 @@ return new class extends Migration
$table->increments('id');
$table->string('mentionable_type', 50)->index();
$table->unsignedBigInteger('mentionable_id')->index();
$table->unsignedInteger('from_user_id')->index();
$table->unsignedInteger('from_user_id');
$table->unsignedInteger('to_user_id');
$table->timestamps();
});