From 192d1948557aee3784f318acf2029f317d6d121f Mon Sep 17 00:00:00 2001 From: brusnitsyn Date: Wed, 15 Jul 2026 17:00:09 +0900 Subject: [PATCH] =?UTF-8?q?=D0=94=D0=BE=D0=B1=D0=B0=D0=B2=D0=B8=D0=BB=20?= =?UTF-8?q?=D0=BF=D0=BE=D0=B4=D0=B4=D0=B5=D1=80=D0=B6=D0=BA=D1=83=20=D1=82?= =?UTF-8?q?=D0=B8=D0=BF=D0=B0=20=D0=BE=D0=BF=D0=BB=D0=B0=D1=82=D1=8B=20?= =?UTF-8?q?=D0=B2=20=D0=BE=D1=82=D1=87=D0=B5=D1=82=20=D0=BC=D0=B5=D0=B4.?= =?UTF-8?q?=20=D1=81=D0=B5=D1=81=D1=82=D1=80=D1=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ...rofit_type_id_in_report_nurse_patients.php | 28 +++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 database/migrations/2026_07_15_135809_add_column_profit_type_id_in_report_nurse_patients.php diff --git a/database/migrations/2026_07_15_135809_add_column_profit_type_id_in_report_nurse_patients.php b/database/migrations/2026_07_15_135809_add_column_profit_type_id_in_report_nurse_patients.php new file mode 100644 index 0000000..e9f641f --- /dev/null +++ b/database/migrations/2026_07_15_135809_add_column_profit_type_id_in_report_nurse_patients.php @@ -0,0 +1,28 @@ +integer('profit_type_id')->default(0); + }); + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + Schema::table('report_nurse_patients', function (Blueprint $table) { + $table->dropColumn('profit_type_id'); + }); + } +};