Bump database version to 3

Incremented the DB_VERSION constant from 2 to 3 in preparation for database schema changes or upgrades.
This commit is contained in:
Dariusz L
2025-06-26 20:59:08 +02:00
parent 3ca0a32a14
commit f2998f0f08

View File

@@ -4,7 +4,7 @@ const log = createModuleLogger('db');
const DB_NAME = 'CanvasNodeDB';
const STATE_STORE_NAME = 'CanvasState';
const IMAGE_STORE_NAME = 'CanvasImages';
const DB_VERSION = 2;
const DB_VERSION = 3;
let db;