Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions loaf_billing.sql
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

CREATE TABLE IF NOT EXISTS `loaf_invoices` (
`id` VARCHAR(15), -- unique bill id
`issued` DATE DEFAULT CURRENT_DATE, -- the date the bill was issued
`issued` DATE DEFAULT (CURRENT_DATE), -- the date the bill was issued

`biller` VARCHAR(150) NOT NULL, -- the identifier who issued the bill
`biller_name` VARCHAR(150) NOT NULL, -- the name of the person who issued the bill
Expand All @@ -25,4 +25,4 @@ CREATE TABLE IF NOT EXISTS `loaf_invoices` (
`signature` LONGTEXT, -- image data (url/base64) for the signature

PRIMARY KEY (`id`)
);
);