Commit 51b58d14 by 刘旋尧

日志输出内容长度修改

parent eaa09168
# 什么是webhook
# get
\ No newline at end of file
...@@ -17,7 +17,7 @@ class CreateHookLogTable extends Migration ...@@ -17,7 +17,7 @@ class CreateHookLogTable extends Migration
$table->increments('id'); $table->increments('id');
$table->integer('hook_id'); $table->integer('hook_id');
$table->tinyInteger('result'); $table->tinyInteger('result');
$table->string('output', 64); $table->text('output');
$table->dateTime("created_at"); $table->dateTime("created_at");
$table->dateTime("updated_at"); $table->dateTime("updated_at");
}); });
......
<template> <template>
<div class="row"> <div class="row">
<div class="col-lg-8 m-auto"> <div class="col-lg-12 m-auto">
<card title="Hook日志"> <card title="Hook日志">
<p> <p>
<router-link to="/home">回到Hook列表</router-link> <router-link to="/home">回到Hook列表</router-link>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment