FinanceFerret/2.0/sql/trx topic

From Woozle Writes Code
< FinanceFerret‎ | 2.0‎ | sql
Jump to navigation Jump to search

SQL

CREATE TABLE `trx_topic` (
  `ID_Trx`       INT(4)           NOT NULL,
  `ID_Topic`     INT(4)           NOT NULL,
  `Amount`       DECIMAL(9,2) DEFAULT NULL COMMENT "amount of money that belongs to ID_Topic",
) ENGINE=InnoDB;