[#1323] metabase: Bump version

Signed-off-by: Dmitrii Stepanov <d.stepanov@yadro.com>
This commit is contained in:
Dmitrii Stepanov 2024-08-20 15:39:44 +03:00 committed by Evgenii Stratonikov
parent 7d0d781db1
commit 76f67ea34e
2 changed files with 8 additions and 1 deletions

View file

@ -2,6 +2,8 @@
This file describes changes between the metabase versions. This file describes changes between the metabase versions.
Warning: database schema below is outdated and incomplete, see source code.
## Current ## Current
### Primary buckets ### Primary buckets
@ -86,6 +88,11 @@ This file describes changes between the metabase versions.
# History # History
## Version 3
- Payload hash, owner ID and FKBT buckets deleted
- Expiration epoch to object ID and object ID to expiration epoch added
## Version 2 ## Version 2
- Container ID is encoded as 32-byte slice - Container ID is encoded as 32-byte slice

View file

@ -9,7 +9,7 @@ import (
) )
// version contains current metabase version. // version contains current metabase version.
const version = 2 const version = 3
var versionKey = []byte("version") var versionKey = []byte("version")