Add a name to each OFXAccount

So that users can identify their accounts with their own meaningful
names
This commit is contained in:
Eli Ribble 2016-06-21 07:27:29 -06:00
parent d17c592908
commit 91f89d2cbd
2 changed files with 25 additions and 0 deletions

View file

@ -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'