mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-17 05:10:31 +00:00
feat(ManualJournals): Auto-increment.
fix(BillPayment): Validate the opened payment bills. fix(redux): presist redux state. fix(useRequestQuery): hook.
This commit is contained in:
@@ -4,7 +4,7 @@ exports.up = function(knex) {
|
||||
table.increments();
|
||||
|
||||
table.integer('bill_payment_id').unsigned().index().references('id').inTable('bills_payments');
|
||||
table.integer('bill_id').unsigned().index();
|
||||
table.integer('bill_id').unsigned().index().references('id').inTable('bills');
|
||||
table.decimal('payment_amount', 13, 3).unsigned();
|
||||
})
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user