connector)->create('pipi_owners', static function (Blueprint $table) { $table->id(); $table->string('fio')->nullable()->comment('ФИО владельца'); $table->string('contract_file_path')->nullable()->comment('Путь до договора'); $table->timestamps(); $table->softDeletes(); $table->unsignedBigInteger('user_id')->nullable()->comment('Пользователь в системе'); $table->foreign('user_id')->references('id')->on('core_users'); }); } } };