阶段更新

This commit is contained in:
2020-09-29 14:17:56 +08:00
parent 996ed300f5
commit abfcfab3ba
26 changed files with 936 additions and 946 deletions

View File

@@ -40,9 +40,9 @@ class Log extends Model
Schema::create($this->table, function (Blueprint $table) {
$table->increments('id');
$table->string('path', 255);
$table->string('method', 15)->index();
$table->string('method', 15);
$table->text('in_source');
$table->string('type', 20)->index();
$table->string('type', 20);
$table->text('out_source')->nullable();
$table->timestamps();
});