bigIncrements('id'); $table->string('code')->unique(); $table->string('name'); $table->integer('level'); $table->timestamps(); $table->softDeletes(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('positions'); } };