Fixed borked down() method in migration

This commit is contained in:
snipe 2017-01-26 04:48:43 -08:00
parent 5e9c69711b
commit 19313e4b83

View file

@ -24,8 +24,8 @@ class CreateLocationsLdapQueryField extends Migration
*/
public function down()
{
Schema::table('locations', function ($table) {
$table->string('ldap_ou')->nullable()->default(null);
Schema::table('locations', function (Blueprint $table) {
$table->dropColumn('ldap_ou');
});
}
}