fix: missing comma in migration file

fix: default value for customer notes
fix: remove custom requirements divider when there are no requirements set
This commit is contained in:
Sérgio Salgado 2021-12-10 18:18:57 +00:00
parent e0529efb92
commit 01841c03ba
3 changed files with 4 additions and 4 deletions

View file

@ -8,7 +8,7 @@ exports.up = function (next) {
created TIMESTAMPTZ NOT NULL DEFAULT now(),
last_edited_at TIMESTAMPTZ,
last_edited_by UUID REFERENCES users(id),
title TEXT NOT NULL DEFAULT ''
title TEXT NOT NULL DEFAULT '',
content TEXT NOT NULL DEFAULT ''
)`
]