ソースを参照

添加登陆注册

chenxiqiang 6 年 前
コミット
a3df275868
共有1 個のファイルを変更した2 個の追加2 個の削除を含む
  1. 2
    2
      manage-server/database/migrations/2018_08_20_014238_create_classifies_table.php

manage-server/database/migrations/2018_08_20_014238_create_classifys_table.php → manage-server/database/migrations/2018_08_20_014238_create_classifies_table.php ファイルの表示

@@ -13,7 +13,7 @@ class CreateClassifysTable extends Migration
13 13
      */
14 14
     public function up()
15 15
     {
16
-        Schema::create('classifys', function (Blueprint $table) {
16
+        Schema::create('classifies', function (Blueprint $table) {
17 17
             $table->increments('id');
18 18
             $table->timestamps();
19 19
             $table->unsignedInteger('pid'); // 父id
@@ -28,6 +28,6 @@ class CreateClassifysTable extends Migration
28 28
      */
29 29
     public function down()
30 30
     {
31
-        Schema::dropIfExists('classifys');
31
+        Schema::dropIfExists('classifies');
32 32
     }
33 33
 }

Loading…
キャンセル
保存