bigIncrements('id'); $table->integer('order_id')->comment("订单表ID"); $table->integer('dial_time')->comment("拨打时间"); $table->integer('dialend_time')->comment("结束时间"); $table->integer('talk_time')->comment("通话时长"); $table->timestamps(); }); DB::statement("ALTER TABLE `bm_call_logs` comment '通话记录表'"); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('call_logs'); } }