From b5360973db1c318ae4ce5731af4b3a3fbf001434 Mon Sep 17 00:00:00 2001 From: cody <648753004@qq.com> Date: Sun, 28 Sep 2025 11:13:50 +0800 Subject: [PATCH] =?UTF-8?q?refactor(app):=20=E4=BC=98=E5=8C=96=E9=82=AE?= =?UTF-8?q?=E4=BB=B6=E6=A8=A1=E6=9D=BF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ...9_28_111112_alert_supply_demands_table.php | 32 +++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 database/migrations/2025_09_28_111112_alert_supply_demands_table.php diff --git a/database/migrations/2025_09_28_111112_alert_supply_demands_table.php b/database/migrations/2025_09_28_111112_alert_supply_demands_table.php new file mode 100644 index 0000000..dab5791 --- /dev/null +++ b/database/migrations/2025_09_28_111112_alert_supply_demands_table.php @@ -0,0 +1,32 @@ +string('fund_company')->nullable()->comment('融资公司'); + }); + } + + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + Schema::table('supply_demands', function (Blueprint $table) { + // + }); + } +};