function (Builder $schema) { $schema->table('posts', function (Blueprint $table) { $table->index(['discussion_id', 'number']); $table->index(['discussion_id', 'created_at']); $table->index(['user_id', 'created_at']); }); }, 'down' => function (Builder $schema) { $schema->table('posts', function (Blueprint $table) { $table->dropIndex(['discussion_id', 'number']); $table->dropIndex(['discussion_id', 'created_at']); $table->dropIndex(['user_id', 'created_at']); }); } ];