浏览代码

Merge branch 'develop'

xielin 6 年之前
父节点
当前提交
2a26360bd3
共有 1 个文件被更改,包括 0 次插入32 次删除
  1. 0 32
      database/migrations/2019_04_25_103653_update_config_pickup_node_table.php

+ 0 - 32
database/migrations/2019_04_25_103653_update_config_pickup_node_table.php

@@ -1,32 +0,0 @@
-<?php
-
-use Illuminate\Support\Facades\Schema;
-use Illuminate\Database\Schema\Blueprint;
-use Illuminate\Database\Migrations\Migration;
-
-class UpdateConfigPickupNodeTable extends Migration
-{
-    /**
-     * Run the migrations.
-     *
-     * @return void
-     */
-    public function up()
-    {
-        Schema::table('config_pickup_node', function (Blueprint $table) {
-            $table->integer('distance')->comment('距离');
-        });
-    }
-
-    /**
-     * Reverse the migrations.
-     *
-     * @return void
-     */
-    public function down()
-    {
-        Schema::table('config_pickup_node', function (Blueprint $table) {
-            $table->dropColumn(['distance']);
-        });
-    }
-}