increments('id'); $table->integer('parent_id')->nullable(); $table->string('name', 225)->nullable(); $table->string('slug', 225)->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('attributes'); } }