feat: add sale receipt number.

This commit is contained in:
Ahmed Bouhuolia
2020-10-26 13:47:42 +02:00
parent 1c842662ab
commit d0785c65db
5 changed files with 51 additions and 4 deletions

View File

@@ -6,6 +6,7 @@ exports.up = function(knex) {
table.integer('deposit_account_id').unsigned().index().references('id').inTable('accounts');
table.integer('customer_id').unsigned().index().references('id').inTable('contacts');
table.date('receipt_date').index();
table.string('receipt_number');
table.string('reference_no');
table.string('email_send_to');
table.text('receipt_message');