mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-07-09 03:14:30 -04:00
Merge migration fix
This commit is contained in:
parent
859265a946
commit
d14d99a74d
@ -14,12 +14,12 @@ class IncreasePrecision extends Migration
|
||||
{
|
||||
Schema::table('products', function ($table) {
|
||||
$table->decimal('cost', 15, 4)->change();
|
||||
$table->decimal('qty', 15, 4)->change();
|
||||
$table->decimal('qty', 15, 4)->default(0)->change();
|
||||
});
|
||||
|
||||
Schema::table('invoice_items', function ($table) {
|
||||
$table->decimal('cost', 15, 4)->change();
|
||||
$table->decimal('qty', 15, 4)->change();
|
||||
$table->decimal('qty', 15, 4)->default(0)->change();
|
||||
});
|
||||
|
||||
Schema::table('clients', function ($table) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user