string('delivery_from_address')->nullable(); $table->unsignedBigInteger('delivery_from_object_id')->nullable(); }); Schema::table('medical_history_nurses', function (Blueprint $table) { $table->string('delivery_from_address')->nullable(); $table->unsignedBigInteger('delivery_from_object_id')->nullable(); }); Schema::table('report_nurse_patients', function (Blueprint $table) { $table->string('delivery_from_address')->nullable(); $table->unsignedBigInteger('delivery_from_object_id')->nullable(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::table('medical_history_corrections', function (Blueprint $table) { $table->dropColumn('delivery_from_address'); $table->dropColumn('delivery_from_object_id'); }); Schema::table('medical_history_nurses', function (Blueprint $table) { $table->dropColumn('delivery_from_address'); $table->dropColumn('delivery_from_object_id'); }); Schema::table('report_nurse_patients', function (Blueprint $table) { $table->dropColumn('delivery_from_address'); $table->dropColumn('delivery_from_object_id'); }); } };