-- Accounts INSERT INTO account ("key", type, status, current_balance) VALUES ('accounts.checkaccount', 'BANK', 'OPEN', 0); INSERT INTO account ("key", type, status, current_balance) VALUES ('accounts.income', 'INCOME', 'OPEN', 0); INSERT INTO account ("key", type, status, current_balance) VALUES ('accounts.cash', 'CASH', 'OPEN', 0); INSERT INTO account ("key", type, status, current_balance) VALUES ('accounts.start', 'START', 'OPEN', 0); INSERT INTO account ("key", type, status, current_balance) VALUES ('accounts.rent', 'EXPENSE', 'OPEN', 0);