mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-10 07:34:06 -08:00
37 lines
822 B
PHP
37 lines
822 B
PHP
<?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()
|
|
{
|
|
if (Schema::hasTable('oauth_clients')) {
|
|
Schema::table('oauth_clients', function (Blueprint $table) {
|
|
$table->string('secret', 100)->nullable()->change();
|
|
});
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Reverse the migrations.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function down()
|
|
{
|
|
if (Schema::hasTable('oauth_clients')) {
|
|
Schema::table('oauth_clients', function (Blueprint $table) {
|
|
$table->string('secret', 100)->change();
|
|
});
|
|
}
|
|
}
|
|
}
|