mirror of
https://github.com/snipe/snipe-it.git
synced 2025-02-21 03:15:45 -08:00
Fixed borked down() method in migration
This commit is contained in:
parent
5e9c69711b
commit
19313e4b83
|
@ -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');
|
||||
});
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue