From 32a208a548e590c001eb7ef766c37875499cf29b Mon Sep 17 00:00:00 2001 From: Camila Belo Date: Fri, 22 Mar 2024 09:38:10 +0100 Subject: [PATCH] test: try fixing namespace length Signed-off-by: Camila Belo --- .../app-backend/migrations/20240113144027_assets-namespace.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/app-backend/migrations/20240113144027_assets-namespace.js b/plugins/app-backend/migrations/20240113144027_assets-namespace.js index 5fd6ecc5aa..b533d35dfa 100644 --- a/plugins/app-backend/migrations/20240113144027_assets-namespace.js +++ b/plugins/app-backend/migrations/20240113144027_assets-namespace.js @@ -22,7 +22,7 @@ exports.up = async function up(knex) { await knex.schema.alterTable('static_assets_cache', table => { // The namespace is used to allow operations on asset groups, e.g. delete all assets in a namespace - table.text('namespace').comment('The namespace of the file'); + table.string('namespace').comment('The namespace of the file'); table.index('namespace', 'static_asset_cache_namespace_idx'); }); };