mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-09 23:24:06 -08:00
Nope - was right the first time. Sigh.
This commit is contained in:
parent
569905ad06
commit
36436f7929
|
@ -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();
|
||||
});
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue