id(); $table->string('name')->nullable()->comment('任务名称'); $table->boolean('status')->comment('任务状态'); $table->string('type')->comment('任务类型'); $table->string('time')->comment('任务周期'); $table->text('shell')->comment('任务脚本文件'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('crons'); } };