increments('id'); $table->string('name', 100)->nullable(); $table->decimal('min_amount', 10,2)->nullable(); $table->decimal('max_amount', 10,2)->nullable(); $table->integer('duration')->nullable(); $table->text('description')->nullable(); $table->string('features', 100)->nullable(); $table->tinyInteger('status')->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('package_plans'); } }