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