Fixes #10 - Don't use defaults for json fields in migration

This commit is contained in:
Jamie Curnow
2018-09-03 09:50:18 +10:00
parent 02b4def04a
commit bbe02bc70a
12 changed files with 105 additions and 11 deletions

View File

@ -13,6 +13,11 @@ class AuditLog extends Model {
$beforeInsert () {
this.created_on = Model.raw('NOW()');
this.modified_on = Model.raw('NOW()');
// Default for meta
if (typeof this.meta === 'undefined') {
this.meta = {};
}
}
$beforeUpdate () {