liyinglin 3 years ago
parent a1835ee6b1
commit d1b3e1af2e

@ -253,6 +253,7 @@ class VisitController extends CommonController
* @OA\Parameter(name="content", in="query", @OA\Schema(type="string"), required=true, description="内容json"),
* @OA\Parameter(name="ask", in="query", @OA\Schema(type="string"), required=true, description="问题json"),
* @OA\Parameter(name="expire_day", in="query", @OA\Schema(type="string"), required=true, description="有效天数"),
* @OA\Parameter(name="type", in="query", @OA\Schema(type="string"), required=true, description="类型 init型"),
* @OA\Parameter(name="token", in="query", @OA\Schema(type="string"), required=true, description="token"),
* @OA\Response(
* response="200",

@ -21,6 +21,7 @@ class CreateStudyLogsTable extends Migration
$table->json('content')->nullable();
$table->json('ask')->nullable();
$table->integer('expire_day')->comment('有效天数')->nullable();
$table->boolean('type')->comment('类型')->nullable();
$table->timestamps();
$table->softDeletes();
});

Loading…
Cancel
Save