fix create_TheClass 欄位名稱錯誤

This commit is contained in:
Yuan Chiu 2018-07-25 16:36:16 +08:00
parent 4122cd1fdd
commit 14ec8182b0

View File

@ -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('類別名稱');
});
}