FerretMyMoney/sql/fmmBankBals

from HTYP, the free directory anyone can edit if they can prove to me that they're not a spambot
< FerretMyMoney
Revision as of 20:26, 20 February 2012 by Woozle (talk | contribs) (Created page with "==About== * '''Purpose''': stores end-of-day balances as shown by the bank (online or statement) * '''History''': ** '''2012-02-20''' designed ==SQL== <section begin=sql /><my...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

About

  • Purpose: stores end-of-day balances as shown by the bank (online or statement)
  • History:
    • 2012-02-20 designed

SQL

<mysql>CREATE TABLE `fmmTrxacts` (

 ID_Acct       VARCHAR(32)  NOT NULL COMMENT "ID of KMM Account",
 WhenBank      DATETIME     NOT NULL COMMENT "day for which this balance applies",
 Balance       DECIMAL(9,2) NOT NULL COMMENT "balance as given by bank",
 PRIMARY KEY(`ID_Acct`,`WhenBank`)
)
ENGINE = MYISAM;</mysql>