mirror of
https://gitlab.com/omair-personal/exchange.git
synced 2026-08-19 04:24:08 +00:00
change billingcharge rate and tax rate table to double. Modify Customer calculation table
This commit is contained in:
@@ -15,7 +15,7 @@ class CreateSettingBillingChargeTable extends Migration
|
||||
{
|
||||
Schema::create('setting_billing_charges', function (Blueprint $table) {
|
||||
$table->increments('id');
|
||||
$table->double('billing_charge_rate',8,2);
|
||||
$table->double('billing_charge_rate');
|
||||
$table->timestamps();
|
||||
});
|
||||
}
|
||||
|
||||
@@ -15,7 +15,7 @@ class CreateSettingTaxRateTable extends Migration
|
||||
{
|
||||
Schema::create('setting_tax_rates', function (Blueprint $table) {
|
||||
$table->increments('id');
|
||||
$table->double('tax_rate',8,2);
|
||||
$table->double('tax_rate');
|
||||
$table->timestamps();
|
||||
});
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user