id(); $table->string("name", 255); $table->string("description", 800)->nullable(); $table->timestamps(); }); DB::table("albums")->insert([ "name" => "Autres", "description" => "Tout les articles sans album." ]); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('albums'); } };