mirror of
https://github.com/fspc/Yellow-Bike-Database.git
synced 2026-09-03 02:11:38 -04:00
Add a deposit to initialize the POS
This commit is contained in:
@@ -225,3 +225,11 @@ CREATE TABLE IF NOT EXISTS selections (
|
||||
|
||||
-- create the comment row first
|
||||
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);
|
||||
|
||||
Reference in New Issue
Block a user