feat(views/geomap): migrate db to new collection type

This commit is contained in:
Elian Doran
2025-07-06 20:17:15 +03:00
parent ce33dfb003
commit f5a6dfa629
3 changed files with 53 additions and 1 deletions

View File

@@ -6,6 +6,11 @@
// Migrations should be kept in descending order, so the latest migration is first.
const MIGRATIONS: (SqlMigration | JsMigration)[] = [
// Migrate geo map to collection
{
version: 233,
module: async () => import("./0233__migrate_geo_map_to_collection.js")
},
// Remove embedding tables since LLM embedding functionality has been removed
{
version: 232,