string('id', 100)->primary(); $table->string('access_token_id', 100)->index(); $table->boolean('revoked'); $table->dateTime('expires_at')->nullable(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('oauth_refresh_tokens'); } };