id(); $table->string('name'); $table->string('class'); $table->json('config')->nullable(); $table->string('schedule')->default('* * * * *'); $table->boolean('enabled')->default(true); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('bots'); } };