Compare commits

...

1 Commits

Author SHA1 Message Date
14ec8182b0 fix create_TheClass 欄位名稱錯誤 2018-07-25 16:36:16 +08:00

View File

@ -14,7 +14,7 @@ class CreateTheClassTable extends Migration {
{ {
Schema::create('TheClass', function(Blueprint $table) Schema::create('TheClass', function(Blueprint $table)
{ {
$table->integer('CID', true); $table->integer('C_ID', true);
$table->string('name', 50)->comment('類別名稱'); $table->string('name', 50)->comment('類別名稱');
}); });
} }