From e8eca949df6ce24b67b0cf910cfb0fa1955f96f2 Mon Sep 17 00:00:00 2001 From: "y.higashide" Date: Fri, 16 Jan 2026 15:28:25 +0900 Subject: [PATCH] =?UTF-8?q?database/migrations/2026=5F01=5F16=5F144753=5Fc?= =?UTF-8?q?reate=5Fmanagement=5Ftable.php=20=E3=82=92=E6=9B=B4=E6=96=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../migrations/2026_01_16_144753_create_management_table.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/database/migrations/2026_01_16_144753_create_management_table.php b/database/migrations/2026_01_16_144753_create_management_table.php index 3fcc010..b7e5ccc 100644 --- a/database/migrations/2026_01_16_144753_create_management_table.php +++ b/database/migrations/2026_01_16_144753_create_management_table.php @@ -17,7 +17,7 @@ return new class extends Migration $table->string('management_code', 10)->unique(); // varchar(10), NOT NULL, UNIQUE $table->boolean('municipality_flag')->nullable(); // tinyint(1), NULL $table->boolean('government_approval_required')->nullable(); // tinyint(1), NULL - $table->boolean('valid_flag '); // tinyint(1) + $table->boolean('valid_flag'); // tinyint(1) $table->timestamps(); // created_at, updated_at (datetime), NOT NULL $table->unsignedInteger('operator_id')->nullable(); // int(10), NULL $table->foreign('operator_id')->references('ope_id')->on('ope'); // 外部キー(opeテーブルのope_idを参照)