id(); $table->uuid()->unique(); $table->string('name'); $table->string('icon')->nullable(); $table->unsignedSmallInteger('sort')->default(0); $table->timestamps(); }); } public function down(): void { Schema::dropIfExists('rooms'); } };