xxxxxxxxxx
Schema::create('oauth_access_token_extensions', function (Blueprint $table) {
$table->bigIncrements('id');
$table->string('oauth_access_token_id', 100)->unique();
$table->morphs('owner');
$table->timestamps();
});