Skip to content

Instantly share code, notes, and snippets.

View amexn-me's full-sized avatar
💻
debugging

Ameen amexn-me

💻
debugging
View GitHub Profile
@ak4zh
ak4zh / migration.sql
Created September 22, 2022 08:48
Double Entry Book Keeping with Journals and Voucher
CREATE TABLE public.vouchers (
id serial PRIMARY KEY,
name text NOT NULL
);
INSERT INTO vouchers
(name)
VALUES
('Sales'),
('Purchase'),