mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-16 12:50:38 +00:00
feat: Manual journals.
This commit is contained in:
@@ -2,10 +2,11 @@
|
||||
exports.up = function(knex) {
|
||||
return knex.schema.createTable('manual_journals', (table) => {
|
||||
table.increments();
|
||||
table.string('reference');
|
||||
table.string('journal_number');
|
||||
table.string('transaction_type');
|
||||
table.decimal('amount');
|
||||
table.date('date');
|
||||
table.boolean('status').defaultTo(false);
|
||||
table.string('note');
|
||||
table.integer('user_id').unsigned();
|
||||
table.timestamps();
|
||||
|
||||
Reference in New Issue
Block a user