change decimal resolution to 20,6 across application

This commit is contained in:
David Bomba 2021-01-05 13:16:17 +11:00
parent 2dd7e07c82
commit 015faa3a94

View File

@ -0,0 +1,119 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class ImproveDecimalResolution extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::table('company_ledgers', function (Blueprint $table) {
$table->decimal('balance', 20, 6)->change();
$table->decimal('adjustment', 20, 6)->change();
});
Schema::table('credits', function (Blueprint $table) {
$table->decimal('tax_rate1', 20, 6)->change();
$table->decimal('tax_rate2', 20, 6)->change();
$table->decimal('tax_rate3', 20, 6)->change();
$table->decimal('total_taxes', 20, 6)->change();
$table->decimal('exchange_rate', 20, 6)->change();
$table->decimal('balance', 20, 6)->change();
$table->decimal('partial', 20, 6)->change();
$table->decimal('amount', 20, 6)->change();
});
Schema::table('invoices', function (Blueprint $table) {
$table->decimal('tax_rate1', 20, 6)->change();
$table->decimal('tax_rate2', 20, 6)->change();
$table->decimal('tax_rate3', 20, 6)->change();
$table->decimal('total_taxes', 20, 6)->change();
$table->decimal('exchange_rate', 20, 6)->change();
$table->decimal('balance', 20, 6)->change();
$table->decimal('partial', 20, 6)->change();
$table->decimal('amount', 20, 6)->change();
});
Schema::table('quotes', function (Blueprint $table) {
$table->decimal('tax_rate1', 20, 6)->change();
$table->decimal('tax_rate2', 20, 6)->change();
$table->decimal('tax_rate3', 20, 6)->change();
$table->decimal('total_taxes', 20, 6)->change();
$table->decimal('exchange_rate', 20, 6)->change();
$table->decimal('balance', 20, 6)->change();
$table->decimal('partial', 20, 6)->change();
$table->decimal('amount', 20, 6)->change();
});
Schema::table('expenses', function (Blueprint $table) {
$table->decimal('tax_rate1', 20, 6)->change();
$table->decimal('tax_rate2', 20, 6)->change();
$table->decimal('tax_rate3', 20, 6)->change();
$table->decimal('amount', 20, 6)->change();
$table->decimal('foreign_amount', 20, 6)->change();
$table->decimal('exchange_rate', 20, 6)->change();
});
Schema::table('payments', function (Blueprint $table) {
$table->decimal('amount', 20, 6)->change();
$table->decimal('refunded', 20, 6)->change();
$table->decimal('applied', 20, 6)->change();
$table->decimal('exchange_rate', 20, 6)->change();
});
Schema::table('products', function (Blueprint $table) {
$table->decimal('tax_rate1', 20, 6)->change();
$table->decimal('tax_rate2', 20, 6)->change();
$table->decimal('tax_rate3', 20, 6)->change();
});
Schema::table('projects', function (Blueprint $table) {
$table->decimal('task_rate', 20, 6)->change();
$table->decimal('budgeted_hours', 20, 6)->change();
});
Schema::table('recurring_invoices', function (Blueprint $table) {
$table->decimal('tax_rate1', 20, 6)->change();
$table->decimal('tax_rate2', 20, 6)->change();
$table->decimal('tax_rate3', 20, 6)->change();
$table->decimal('total_taxes', 20, 6)->change();
$table->decimal('balance', 20, 6)->change();
$table->decimal('amount', 20, 6)->change();
});
Schema::table('recurring_quotes', function (Blueprint $table) {
$table->decimal('tax_rate1', 20, 6)->change();
$table->decimal('tax_rate2', 20, 6)->change();
$table->decimal('tax_rate3', 20, 6)->change();
$table->decimal('total_taxes', 20, 6)->change();
$table->decimal('balance', 20, 6)->change();
$table->decimal('amount', 20, 6)->change();
});
Schema::table('tasks', function (Blueprint $table) {
$table->decimal('rate', 20, 6)->change();
});
Schema::table('tax_rates', function (Blueprint $table) {
$table->decimal('rate', 20, 6)->change();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
//
}
}