Compute checksums of segments and store them in the local database.
[cumulus.git] / schema.sql
index 6d89b4b..a37b501 100644 (file)
@@ -14,7 +14,9 @@ create table snapshots (
 -- List of segments which have been created.
 create table segments (
     segmentid integer primary key,
-    segment text unique not null
+    segment text unique not null,
+    path text,
+    checksum text
 );
 
 -- Index of all blocks which have been stored in a snapshot, by checksum.