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