id(); $table->string('name')->unique(); $table->text('description')->nullable(); $table->timestamps(); $table->softDeletes(); }); } public function down(): void { Schema::dropIfExists('positions'); } };