FinanceFerret/2.0/sql/Trx List Settings

From Woozle Writes Code
< FinanceFerret‎ | 2.0‎ | sql
Revision as of 15:35, 21 February 2019 by htyp>Woozle (Created page with "==About== * '''Purpose''': Stores filter settings that were used to generate a transaction list, so we can bring the filter form back up for modification ** '''Requires''': {{...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

About

  • Purpose: Stores filter settings that were used to generate a transaction list, so we can bring the filter form back up for modification
  • History:
    • 2019-02-21: Design started, table created in development instance

SQL

CREATE TABLE `Trx_List_Settings` (
  `ID_List` INT(4) NOT NULL COMMENT "Trx_Lists.ID",
  `Name`       VARCHAR(255),
  `Value`      VARCHAR(255),
  PRIMARY KEY(`ID_List`,`Name`)
) ENGINE=InnoDB;