fix linting and prettier issues

Signed-off-by: lpete@vmware.com <lpete@vmware.com>
This commit is contained in:
lpete@vmware.com
2023-08-07 13:56:31 -04:00
parent 7143e55652
commit 02cedae992
4 changed files with 33 additions and 27 deletions
@@ -24,7 +24,11 @@ exports.up = async function up(knex) {
table.comment(
'A cache of static assets that where previously deployed and may still be lazy-loaded by clients',
);
table.string('path').primary().notNullable().comment('The path of the file');
table
.string('path')
.primary()
.notNullable()
.comment('The path of the file');
table
.dateTime('last_modified_at')
.defaultTo(knex.fn.now())