increments('id'); $table->string('title', 255)->nullable(); $table->string('sub_title', 255)->nullable(); $table->text('features')->nullable(); $table->decimal('price', 10,2)->nullable(); $table->enum('type', ['Day','Month','Year'])->nullable(); $table->text('image')->nullable(); $table->string('slug', 200)->nullable(); $table->enum('status', ['Show','Hide'])->nullable(); $table->integer('user_id')->nullable(); $table->string('user_type', 100)->nullable(); $table->string('upload_folder', 100)->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('price_lists'); } }