id(); $table->foreignIdFor(Organisation::class); $table->string('name'); $table->string('type'); $table->text('token'); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('providers'); } };