From bbc091a5a204be99813aaf2ba34084a7987fbb95 Mon Sep 17 00:00:00 2001 From: cody <648753004@qq.com> Date: Wed, 26 Nov 2025 11:04:43 +0800 Subject: [PATCH] =?UTF-8?q?=E5=8F=98=E6=9B=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../2025_11_26_104139_alert_visits_table.php | 34 +++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 database/migrations/2025_11_26_104139_alert_visits_table.php diff --git a/database/migrations/2025_11_26_104139_alert_visits_table.php b/database/migrations/2025_11_26_104139_alert_visits_table.php new file mode 100644 index 0000000..e929e0b --- /dev/null +++ b/database/migrations/2025_11_26_104139_alert_visits_table.php @@ -0,0 +1,34 @@ +string('accompany_person_no')->nullable()->comment('随访人员人牌'); + // 时间 + $table->time('time')->nullable()->comment('拜访时间'); + }); + } + + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + Schema::table('visits', function (Blueprint $table) { + // + }); + } +};