Nope - was right the first time. Sigh.

This commit is contained in:
snipe 2020-10-15 19:17:08 -07:00
parent 569905ad06
commit 36436f7929

View file

@ -28,9 +28,8 @@ class PassportUpgrade extends Migration
public function down()
{
if (Schema::hasTable('oauth_clients')) {
Schema::table('oauth_clients', function(Blueprint $table)
{
$table->dropColumn('secret');
Schema::table('oauth_clients', function (Blueprint $table) {
$table->string('secret', 100)->change();
});
}
}