Laravel Set Field уникальное

Schema::table('manufacturers', function($table)
{
    $table->string('name')->unique(); 
});
Alberto Peripolli