소스 검색

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']);
-        });
-    }
-}