storj/pkg/datarepair/irreparabledb/dbx/irreparabledb.dbx
2018-12-06 14:32:21 +02:00

18 lines
499 B
Plaintext

// dbx.v1 golang irreparabledb.dbx .
model irreparabledb (
key segmentpath
field segmentpath blob
field segmentdetail blob (updatable)
field pieces_lost_count int64 (updatable)
field seg_damaged_unix_sec int64 (updatable)
field repair_attempt_count int64 (updatable)
)
create irreparabledb ( )
update irreparabledb ( where irreparabledb.segmentpath = ? )
delete irreparabledb ( where irreparabledb.segmentpath = ? )
read one (
select irreparabledb
where irreparabledb.segmentpath = ?
)