TLDR; I would like to get a warning on changing/adding a foreign key for Postgresql that it locks the table and if the table is large, it could be locked for some time. When adding or changing a ...
public function up(): void { Schema::create('organisations', function (Blueprint $table) { $table->string('id')->primary(); $table->string('name_original'); $table ...