increments('id'); $table->string('designation'); $table->text('options')->nullable(); $table->integer('category_id')->nullable(); $table->string('Local_ID')->nullable(); $table->integer('user_id'); $table->integer('store_id'); $table->text("image_file")->nullable(); $table->timestamps(); $table->softDeletes(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('categories'); } }