Bank account fields improved to allow multi-line info (if you need to enter more details than only your account no).

This commit is contained in:
HenriT
2021-04-07 11:08:45 +03:00
parent 1e0081acfe
commit ea92907758
7 changed files with 106 additions and 38 deletions

View File

@ -8,8 +8,8 @@ export default class BankAccount extends Model {
static fields() {
return {
id: this.attr(() => uuidv4()),
account_no: this.attr(''),
bank_name: this.attr(''),
account_no: this.attr(''),
updated_at: this.attr(''),
created_at: this.attr(''),
};