gq 8 роки тому
батько
коміт
47c53fb2d7

+ 2 - 2
server/database/migrations/2017_06_22_083956_create_support_dream_info_table.php

xqd xqd
@@ -13,7 +13,7 @@ class CreateSupportDreamInfoTable extends Migration
      */
     public function up()
     {
-        Schema::create('support_dream_info', function (Blueprint $table) {
+        Schema::create('support_dream', function (Blueprint $table) {
             $table->increments('id');
             $table->integer('user_id')->comment('当前用户ID');
             $table->integer('dram_id')->comment('梦想ID');
@@ -30,6 +30,6 @@ class CreateSupportDreamInfoTable extends Migration
      */
     public function down()
     {
-        Schema::dropIfExists('support_dream_info');
+        Schema::dropIfExists('support_dream');
     }
 }