fix: update the tracking usage filter for the usage page

This commit is contained in:
2026-07-11 18:36:55 +07:00
parent 40606ce39f
commit e1232ed1bd
11 changed files with 422 additions and 241 deletions
+2 -1
View File
@@ -5,8 +5,9 @@ import m001 from "./001-initial.js";
import m002 from "./002-users-table.js";
import m003 from "./003-api-key-owners.js";
import m004 from "./004-provider-connection-owners.js";
import m005 from "./005-usage-user-attribution.js";
export const MIGRATIONS = [m001, m002, m003, m004].sort((a, b) => a.version - b.version);
export const MIGRATIONS = [m001, m002, m003, m004, m005].sort((a, b) => a.version - b.version);
export function latestVersion() {
return MIGRATIONS.length ? MIGRATIONS[MIGRATIONS.length - 1].version : 0;