Edit File: 2016_06_01_000003_create_oauth_refresh_tokens_table.php
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class CreateOauthRefreshTokensTable 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_refresh_tokens', function (Blueprint $table) { $table->string('id', 100)->primary(); $table->string('access_token_id', 100)->index(); $table->boolean('revoked'); $table->dateTime('expires_at')->nullable(); }); } /** * Reverse the migrations. * * @return void */ public function down() { $this->schema->dropIfExists('oauth_refresh_tokens'); } /** * Get the migration connection name. * * @return string|null */ public function getConnection() { return config('passport.storage.database.connection'); } }
Back to File Manager