Edit File: 2016_06_01_000001_create_oauth_auth_codes_table.php
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class CreateOauthAuthCodesTable extends Migration { /** * The database schema. * * @var \Illuminate\Database\Schema\Builder */ protected $schema; /** * Create a new migration instance. * * @return void */ public function __construct() { $this->schema = Schema::connection($this->getConnection()); } /** * Run the migrations. * * @return void */ public function up() { $this->schema->create('oauth_auth_codes', function (Blueprint $table) { $table->string('id', 100)->primary(); $table->unsignedBigInteger('user_id')->index(); $table->unsignedBigInteger('client_id'); $table->text('scopes')->nullable(); $table->boolean('revoked'); $table->dateTime('expires_at')->nullable(); }); } /** * Reverse the migrations. * * @return void */ public function down() { $this->schema->dropIfExists('oauth_auth_codes'); } /** * Get the migration connection name. * * @return string|null */ public function getConnection() { return config('passport.storage.database.connection'); } }
Back to File Manager