Skip to content

Commit

Permalink
remove comments from edgless init file
Browse files Browse the repository at this point in the history
  • Loading branch information
tudor-malene committed Sep 19, 2023
1 parent c672616 commit a2b1030
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions go/enclave/storage/init/edgelessdb/001_init.sql
Original file line number Diff line number Diff line change
Expand Up @@ -34,11 +34,9 @@ create table if not exists obsdb.block
is_canonical boolean NOT NULL,
header blob NOT NULL,
height int NOT NULL,
# INDEX (parent),
primary key (hash),
INDEX (is_canonical),
INDEX (height)
# INDEX (is_canonical, height)
);
GRANT ALL ON obsdb.block TO obscuro;

Expand Down Expand Up @@ -85,15 +83,12 @@ create table if not exists obsdb.batch
l1_proof binary(16) NOT NULL,
is_executed boolean NOT NULL,
primary key (sequence),
# INDEX (parent),
INDEX (hash),
INDEX (body),
INDEX (height),
INDEX (is_canonical),
INDEX (is_executed),
INDEX (l1_proof)
# INDEX (is_canonical, is_executed),
# INDEX (is_canonical, is_executed, height),
);
GRANT ALL ON obsdb.batch TO obscuro;

Expand Down

0 comments on commit a2b1030

Please sign in to comment.