connector)->create('pipi_brand_models', static function (Blueprint $table) { $table->id(); $table->string('name')->nullable()->comment('Наименование'); $table->integer('year')->nullable()->comment('Год выпуска'); $table->timestamps(); $table->softDeletes(); $table->unsignedBigInteger('brand_id')->nullable()->comment('Марка'); $table->foreign('brand_id')->references('id')->on('pipi_auto_brands'); $table->unsignedBigInteger('tariff_id')->nullable()->comment('Тариф'); $table->foreign('tariff_id')->references('id')->on('pipi_auto_tariffs'); }); } } };