refs #2611 Reconciliation edit added transaction list..
This commit is contained in:
@ -18,10 +18,16 @@ return new class extends Migration
|
||||
if (! Type::hasType('double')) {
|
||||
Type::addType('double', FloatType::class);
|
||||
}
|
||||
|
||||
|
||||
// Document Items
|
||||
Schema::table('document_items', function(Blueprint $table) {
|
||||
$table->double('quantity', 12, 2)->change();
|
||||
});
|
||||
|
||||
// Reconciliations
|
||||
Schema::table('reconciliations', function (Blueprint $table) {
|
||||
$table->text('transactions')->nullable()->after('closing_balance');
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
|
Reference in New Issue
Block a user