李浩杰 преди 4 години
родител
ревизия
9561c125f9
променени са 1 файла, в които са добавени 30 реда и са изтрити 0 реда
  1. 30 0
      database/migrations/2020_12_29_104152_add_change_by_machine_to_orders.php

+ 30 - 0
database/migrations/2020_12_29_104152_add_change_by_machine_to_orders.php

xqd
@@ -0,0 +1,30 @@
+<?php
+
+use Illuminate\Support\Facades\Schema;
+use Illuminate\Database\Schema\Blueprint;
+use Illuminate\Database\Migrations\Migration;
+
+class AddChangeByMachineToOrders extends Migration
+{
+    /**
+     * Run the migrations.
+     *
+     * @return void
+     */
+    public function up()
+    {
+        Schema::table('orders', function (Blueprint $table) {
+            $table->tinyInteger('change_by_machine')->default(2)->after('is_change')->comment('机电负责人修改:1是2否')->nullable();
+        });
+    }
+
+    /**
+     * Reverse the migrations.
+     *
+     * @return void
+     */
+    public function down()
+    {
+        //
+    }
+}