From 87165249b0c6bc6408a8bad44a6ef0b2947bfdc6 Mon Sep 17 00:00:00 2001 From: Eli Ribble Date: Tue, 28 Jun 2016 16:09:21 -0600 Subject: [PATCH] Alphabetically sort column names They were bugging me --- vanth/tables.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/vanth/tables.py b/vanth/tables.py index 0719fff..d42d4a9 100644 --- a/vanth/tables.py +++ b/vanth/tables.py @@ -66,12 +66,12 @@ OFXUpdate = table('ofxupdate', ) OFXRecord = table('ofxrecord', - Column('fid', String(255), nullable=False), # The Financial institution's ID Column('amount', Float(), nullable=False), # The amount of the record, like -177.91 Column('available', Date(), nullable=True), # The date the record was available + Column('fid', String(255), nullable=False), # The Financial institution's ID Column('name', String(1024), nullable=False), # The name of the record, like 'UT SLC SAMSCLUB #4719' - Column('posted', Date(), nullable=True), # The date the record posted Column('memo', String(2048), nullable=True), # The memo of the transaction, like 'POINT OF SALE PURCHASE #0005727' - Column('type', String(255), nullable=True), # The type of the record, like 'POS' Column('ofxaccount', None, ForeignKey(OFXAccount.c.uuid, name='fk_ofxaccount'), nullable=False), + Column('posted', Date(), nullable=True), # The date the record posted + Column('type', String(255), nullable=True), # The type of the record, like 'POS' )