for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
use CodexShaper\Database\Facades\Schema;
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
class CreateOauthAccessTokensTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
if (!Schema::hasTable('oauth_access_tokens')) {
Schema::create('oauth_access_tokens', function (Blueprint $table) {
$table->string('id', 100)->primary();
$table->bigInteger('user_id')->index()->nullable();
$table->unsignedInteger('client_id');
$table->string('name')->nullable();
$table->text('scopes')->nullable();
$table->boolean('revoked');
$table->timestamps();
$table->dateTime('expires_at')->nullable();
});
}
* Reverse the migrations.
public function down()
if (Schema::hasTable('oauth_access_tokens')) {
Schema::dropIfExists('oauth_access_tokens');