id(); $table->string('name'); $table->string('cron'); $table->dateTime('last_ping_at'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('tasks'); } }