Subversion Repositories MemberDirect

[/] [parsestatements/] [transactions.sql] - Rev 3

Compare with Previous | Blame | View Log

/* Create the MySQL table for transactions. */
 
CREATE TABLE `transactions` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `account` char(15) NOT NULL,
  `date` date NOT NULL,
  `transactiontype` text NOT NULL,
  `item` text,
  `confirmationnumber` text,
  `amount` decimal(10,2) DEFAULT NULL,
  `balance` decimal(10,2) NOT NULL,
  PRIMARY KEY  (`id`)
);

Compare with Previous | Blame | View Log