diff --git a/database/migrations/2022_06_23_070847_create_benefits_table.php b/database/migrations/2022_06_23_070847_create_benefits_table.php index 6eb93c91..cd9aed05 100644 --- a/database/migrations/2022_06_23_070847_create_benefits_table.php +++ b/database/migrations/2022_06_23_070847_create_benefits_table.php @@ -30,7 +30,7 @@ return new class extends Migration $table->string('max_bed_coverage')->nullable(); $table->string('tolerance_parameter')->nullable(); $table->string('max_room_class')->nullable(); - $table->decimal('limit_amount', 15, 2)->nullable(); + $table->string('limit_amount', 30)->nullable(); $table->boolean('area_limit')->default(false)->nullable(); $table->string('shared_benefit')->nullable(); $table->string('shared_benefit_type')->nullable(); @@ -60,12 +60,12 @@ return new class extends Migration $table->tinyInteger('co_share_m_percentage')->default(100)->nullable(); $table->tinyInteger('co_share_s_percentage')->default(100)->nullable(); $table->tinyInteger('co_share_c_percentage')->default(100)->nullable(); - $table->decimal('cashless_deductible', 15, 2)->nullable(); - $table->decimal('reimbursement_deductible', 15, 2)->nullable(); - $table->decimal('digital_deductible', 15, 2)->nullable(); - $table->decimal('co_share_m_deductible', 15, 2)->nullable(); - $table->decimal('co_share_s_deductible', 15, 2)->nullable(); - $table->decimal('co_share_c_deductible', 15, 2)->nullable(); + $table->string('cashless_deductible', 30)->nullable(); + $table->string('reimbursement_deductible', 30)->nullable(); + $table->string('digital_deductible', 30)->nullable(); + $table->string('co_share_m_deductible', 30)->nullable(); + $table->string('co_share_s_deductible', 30)->nullable(); + $table->string('co_share_c_deductible', 30)->nullable(); $table->string('prorate_type')->nullable(); $table->string('prorate_lookup')->nullable(); $table->string('max_days_for_disability')->nullable(); diff --git a/database/migrations/2022_06_23_083834_create_plans_table.php b/database/migrations/2022_06_23_083834_create_plans_table.php index 6bccc9b3..c0121cc1 100644 --- a/database/migrations/2022_06_23_083834_create_plans_table.php +++ b/database/migrations/2022_06_23_083834_create_plans_table.php @@ -33,9 +33,9 @@ return new class extends Migration $table->string('budget_type')->nullable(); $table->string('budget_code')->nullable(); $table->string('budget_conditions')->nullable(); - $table->decimal('surgery_limit', 15, 2)->nullable(); - $table->decimal('non_surgery_limit', 15, 2)->nullable(); - $table->decimal('max_claim_limit', 15, 2)->nullable(); + $table->string('surgery_limit', 30)->nullable(); + $table->string('non_surgery_limit', 30)->nullable(); + $table->string('max_claim_limit', 30)->nullable(); $table->integer('max_claim_count')->nullable(); $table->boolean('area_limit')->nullable(); $table->string('limit_shared_plans')->nullable(); @@ -46,12 +46,12 @@ return new class extends Migration $table->tinyInteger('co_share_m_percentage')->default(100)->nullable(); $table->tinyInteger('co_share_s_percentage')->default(100)->nullable(); $table->tinyInteger('co_share_c_percentage')->default(100)->nullable(); - $table->decimal('cashless_deductible', 15, 2)->nullable(); - $table->decimal('reimbursement_deductible', 15, 2)->nullable(); - $table->decimal('digital_deductible', 15, 2)->nullable(); - $table->decimal('co_share_m_deductible', 15, 2)->nullable(); - $table->decimal('co_share_s_deductible', 15, 2)->nullable(); - $table->decimal('co_share_c_deductible', 15, 2)->nullable(); + $table->string('cashless_deductible', 30)->nullable(); + $table->string('reimbursement_deductible', 30)->nullable(); + $table->string('digital_deductible', 30)->nullable(); + $table->string('co_share_m_deductible', 30)->nullable(); + $table->string('co_share_s_deductible', 30)->nullable(); + $table->string('co_share_c_deductible', 30)->nullable(); $table->string('co_share_deductible_condition')->nullable(); $table->string('msc')->nullable(); $table->string('genders')->nullable(); diff --git a/frontend/dashboard/.htaccess b/frontend/dashboard/.htaccess index c51178cd..0272d528 100644 --- a/frontend/dashboard/.htaccess +++ b/frontend/dashboard/.htaccess @@ -1,4 +1,6 @@ + Modpagespeed Off + RewriteEngine On RewriteBase / RewriteCond %{REQUEST_FILENAME} !-f