From d3411e84ce413bd7328f2d97c6138b0959cc85fd Mon Sep 17 00:00:00 2001 From: Christopher Moussa Date: Wed, 15 May 2024 10:31:57 -0700 Subject: [PATCH] database: update schema version Problem: The schema version of the flux-accounting database was never updated with the addition of the jobs table in #357. Update the schema version number of the flux-accounting database. --- src/bindings/python/fluxacct/accounting/__init__.py.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bindings/python/fluxacct/accounting/__init__.py.in b/src/bindings/python/fluxacct/accounting/__init__.py.in index c9de208a..be5aa423 100644 --- a/src/bindings/python/fluxacct/accounting/__init__.py.in +++ b/src/bindings/python/fluxacct/accounting/__init__.py.in @@ -1,5 +1,5 @@ db_dir = "@X_LOCALSTATEDIR@/lib/flux/" db_path = "@X_LOCALSTATEDIR@/lib/flux/FluxAccounting.db" -db_schema_version = 21 +db_schema_version = 22 __all__ = ["db_dir", "db_path", "db_schema_version"]