text('id')->unique(); $table->foreignId('user_id')->constrained('users'); $table->text('access_token'); $table->text('refresh_token'); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::drop('authkit2_token'); } }