Add a name to each OFXAccount
So that users can identify their accounts with their own meaningful names
This commit is contained in:
parent
d17c592908
commit
91f89d2cbd
2 changed files with 25 additions and 0 deletions
|
|
@ -46,6 +46,7 @@ OFXSource = Table('ofxsource', metadata,
|
|||
|
||||
OFXAccount = Table('ofxaccount', metadata,
|
||||
Column('uuid', UUID(as_uuid=True), primary_key=True),
|
||||
Column('name', String(255), nullable=False), # My checking account
|
||||
Column('user_id', String(255), nullable=False), # The user ID for the bank
|
||||
Column('password', String(255), nullable=False), # The encrypted password for the account
|
||||
Column('type', String(255), nullable=False), # The account type, like 'checking'
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue