increments('id'); $table->integer('user_id')->nullable(); $table->integer('category_id')->nullable(); $table->string('slug', 250)->nullable(); $table->string('name', 200)->nullable(); $table->enum('status', ['Enabled','Disabled'])->nullable(); $table->text('capacity')->nullable(); $table->text('technology')->nullable(); $table->text('weight')->nullable(); $table->text('warranty')->nullable(); $table->mediumText('features')->nullable(); $table->text('description')->nullable(); $table->text('image')->nullable(); $table->text('images')->nullable(); $table->longText('upload_folder')->nullable(); $table->text('meta_title')->nullable(); $table->text('meta_description')->nullable(); $table->text('meta_keyword')->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('products'); } }