increments('id'); $table->unsignedInteger('parent_id')->index()->nullable(); $table->string('name')->index(); $table->tinyInteger('pos')->unsigned()->nullable(); $table->boolean('active')->default(false); $table->string('slug')->unique()->index(); $table->timestamps(); $table->foreign('parent_id') ->references('id') ->on('attributes'); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('attributes'); } }