id(); $table->string('slug')->unique(); $table->string('font_color'); $table->string('bg_color'); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('statuses'); } };