1
0
mirror of https://github.com/freescout-helpdesk/freescout.git synced 2024-11-24 03:12:46 +01:00

Fix customers table index length

This commit is contained in:
FreeScout 2018-11-12 22:46:38 -08:00
parent d1ba487fcd
commit 41bef2e90e

View File

@ -39,7 +39,7 @@ class CreateCustomersTable extends Migration
// Indexes
// For ajax search
$table->index([DB::raw('first_name(191)'), DB::raw('last_name(191)')]);
$table->index([DB::raw('first_name(80)'), DB::raw('last_name(80)')]);
});
}