64KB length for mysql support, dbms option for e2e

Signed-off-by: lpete@vmware.com <lpete@vmware.com>
This commit is contained in:
lpete@vmware.com
2023-08-15 16:07:28 -04:00
parent 274a321cea
commit ba7bdec126
4 changed files with 8 additions and 5 deletions
@@ -24,8 +24,9 @@ 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',
);
// setting to 64KB to account for long paths
table
.text('path', 'longtext')
.string('path', 65535)
.primary()
.notNullable()
.comment('The path of the file');