Add a deposit to initialize the POS

This commit is contained in:
Jonathan Rosenbaum
2017-07-14 03:21:33 +00:00
parent bb89cba8ba
commit 51f91ddbad
+8
View File
@@ -225,3 +225,11 @@ CREATE TABLE IF NOT EXISTS selections (
-- create the comment row first -- create the comment row first
INSERT INTO options (option_name) VALUES("comments"); INSERT INTO options (option_name) VALUES("comments");
-- add a deposit to initialize the POS
INSERT INTO transaction_log (
transaction_id, date, transaction_type,
amount, description, sold_by, quantity,
shop_id, paid, change_fund)
VALUES(1,NOW(),"Deposit",0,"Initialize POS",1,0,0,0,20);