Change Decimal to String
This commit is contained in:
@@ -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();
|
||||
|
||||
@@ -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();
|
||||
|
||||
Reference in New Issue
Block a user