change billingcharge rate and tax rate table to double. Modify Customer calculation table

This commit is contained in:
weiweitoo
2018-07-20 21:16:36 +08:00
parent 73c36dd8e3
commit 21c13d3e60
5 changed files with 261 additions and 223 deletions
@@ -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();
});
}