id(); $table->uuid('uuid')->unique(); $table->string("path", 511)->default("albums/none.svg"); $table->string("name"); $table->unsignedBigInteger("user_id"); $table->timestamps(); $table->foreign("user_id")->references("id")->on("users"); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('albums'); } };