mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-13 17:14:10 -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()
|
public function down()
|
||||||
{
|
{
|
||||||
if (Schema::hasTable('oauth_clients')) {
|
if (Schema::hasTable('oauth_clients')) {
|
||||||
Schema::table('oauth_clients', function(Blueprint $table)
|
Schema::table('oauth_clients', function (Blueprint $table) {
|
||||||
{
|
$table->string('secret', 100)->change();
|
||||||
$table->dropColumn('secret');
|
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue