increments('id'); $table->integer('parent_id')->nullable(); $table->string('name', 100)->nullable(); $table->text('description')->nullable(); $table->string('slug', 100)->nullable(); $table->enum('status', ['Show','Hide'])->nullable(); $table->string('upload_folder', 255)->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('categories'); } }