Browse Source

修改auditLogs迁移文件为waybill_audit_logs

Zhouzhendong 6 years ago
parent
commit
e12d4a7be1

+ 1 - 1
database/migrations/2019_11_28_152321_create_waybill_audit_logs_table.php

@@ -13,7 +13,7 @@ class CreateWaybillAuditLogsTable extends Migration
      */
      */
     public function up()
     public function up()
     {
     {
-        Schema::create('waybill_aud_logs', function (Blueprint $table) {
+        Schema::create('waybill_audit_logs', function (Blueprint $table) {
             $table->bigIncrements('id');
             $table->bigIncrements('id');
             $table->bigInteger('waybill_id')->comment('外键运单');
             $table->bigInteger('waybill_id')->comment('外键运单');
             $table->foreign('waybill_id')->references('id')->on('waybills');
             $table->foreign('waybill_id')->references('id')->on('waybills');