id(); $table->timestamps(); $table->integer('level_position')->unique()->nullable(); $table->unsignedBigInteger('xpThreshold')->unique(); $table->string('label')->unique(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('levels'); } };