migration unique laravel code example
Example 1: laravel migration index
$table->index(['account_id', 'created_at']);
Example 2: laravel migration integer
$table->bigInteger('votes');
$table->index(['account_id', 'created_at']);
$table->bigInteger('votes');