id(); $table->uuid('uuid')->unique(); $table->string('name')->unique(); $table->text('command'); $table->timestamps(); }); } public function down(): void { Schema::dropIfExists('runbooks'); } };