This commit is contained in:
James Cole
2020-08-05 07:15:28 +02:00
parent 6ecbaf554b
commit 8f22b97905
52 changed files with 964 additions and 751 deletions

View File

@@ -25,7 +25,7 @@ class ChangesForV540 extends Migration
Schema::table(
'accounts', static function (Blueprint $table) {
$table->dropColumn('provider');
$table->dropColumn('order');
}
);
}
@@ -48,6 +48,9 @@ class ChangesForV540 extends Migration
}
);
// make column nullable:
Schema::table('oauth_clients', function (Blueprint $table) {
$table->string('secret', 100)->nullable()->change();
});
}
}