From 14ec8182b0fe0135d60c92c0618a810b579c1b9c Mon Sep 17 00:00:00 2001 From: Yuan Chiu Date: Wed, 25 Jul 2018 16:36:16 +0800 Subject: [PATCH] =?UTF-8?q?fix=20create=5FTheClass=20=E6=AC=84=E4=BD=8D?= =?UTF-8?q?=E5=90=8D=E7=A8=B1=E9=8C=AF=E8=AA=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- database/migrations/2018_07_22_192734_create_TheClass_table.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/database/migrations/2018_07_22_192734_create_TheClass_table.php b/database/migrations/2018_07_22_192734_create_TheClass_table.php index a064dca..c731e6c 100644 --- a/database/migrations/2018_07_22_192734_create_TheClass_table.php +++ b/database/migrations/2018_07_22_192734_create_TheClass_table.php @@ -14,7 +14,7 @@ class CreateTheClassTable extends Migration { { Schema::create('TheClass', function(Blueprint $table) { - $table->integer('CID', true); + $table->integer('C_ID', true); $table->string('name', 50)->comment('類別名稱'); }); }