2019-12-10 19:32:50 -08:00
|
|
|
<?php
|
|
|
|
|
|
|
|
use Illuminate\Database\Migrations\Migration;
|
|
|
|
use Illuminate\Database\Schema\Blueprint;
|
|
|
|
use Illuminate\Support\Facades\Schema;
|
|
|
|
|
|
|
|
class PassportUpgrade extends Migration
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Run the migrations.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function up()
|
|
|
|
{
|
2020-10-15 18:20:41 -07:00
|
|
|
if (Schema::hasTable('oauth_clients')) {
|
|
|
|
Schema::table('oauth_clients', function (Blueprint $table) {
|
|
|
|
$table->string('secret', 100)->nullable()->change();
|
|
|
|
});
|
|
|
|
}
|
2019-12-10 19:32:50 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Reverse the migrations.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function down()
|
|
|
|
{
|
2020-10-15 18:20:41 -07:00
|
|
|
if (Schema::hasTable('oauth_clients')) {
|
2020-10-15 19:17:08 -07:00
|
|
|
Schema::table('oauth_clients', function (Blueprint $table) {
|
|
|
|
$table->string('secret', 100)->change();
|
2020-10-15 18:20:41 -07:00
|
|
|
});
|
|
|
|
}
|
2019-12-10 19:32:50 -08:00
|
|
|
}
|
|
|
|
}
|