id(); $table->string('artist'); $table->string('title'); $table->integer('requestedby'); $table->integer('upvotes'); $table->integer('position'); $table->enum('status', ['requested', 'accepted', 'denied', 'fulfilled']); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('songrequests'); } };