id(); $table->string('name',128); $table->string('slug',128)->unique(); $table->text('description')->nullable(); $table->integer('sort')->default(0); $table->string('image')->nullable()->default(null); $table->unsignedInteger('parent_id')->nullable()->default(null)->index(); $table->softDeletes(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('cats'); } };