Schema::table('tableName', function($table) { $table->string('column-name')->unique(); //notice the parenthesis I added });
$table->dropUnique('users_email_unique');