1-- message Add tax table
2
3CREATE TABLE taxes (
4    id          INTEGER PRIMARY KEY ASC autoincrement,
5    fullTax     DECIMAL(5,1),
6    reducedTax  DECIMAL(5,1),
7    startDate   DATE
8);
9
10INSERT INTO taxes ( fullTax, reducedTax, startDate ) VALUES (16.0, 7.0, '1998-04-01' );
11INSERT INTO taxes ( fullTax, reducedTax, startDate ) VALUES (19.0, 7.0, '2007-01-01' );
12