fix(Currency Code): add the missing the currency codes.

This commit is contained in:
a.bouhuolia
2021-04-06 18:57:34 +02:00
parent 86a36f4044
commit 51940818c4
8 changed files with 72 additions and 28 deletions

View File

@@ -6,6 +6,7 @@ exports.up = function(knex) {
table.string('reference').index();
table.string('journal_type').index();
table.decimal('amount', 13, 3);
table.string('currency_code', 3);
table.date('date').index();
table.string('description');
table.date('published_at').index();