mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-16 04:40:32 +00:00
feat: add opening quantity, cost and date to items.
This commit is contained in:
@@ -17,6 +17,11 @@ exports.up = function (knex) {
|
||||
table.text('sell_description').nullable();
|
||||
table.text('purchase_description').nullable();
|
||||
table.integer('quantity_on_hand');
|
||||
|
||||
table.integer('opening_quantity');
|
||||
table.decimal('opening_cost', 13, 3);
|
||||
table.date('opening_date');
|
||||
|
||||
table.text('note').nullable();
|
||||
table.boolean('active');
|
||||
table.integer('category_id').unsigned().index().references('id').inTable('items_categories');
|
||||
|
||||
Reference in New Issue
Block a user