-
Notifications
You must be signed in to change notification settings - Fork 47
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a83a88b
commit 9276fe2
Showing
2 changed files
with
18 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
create table block_meta | ||
( | ||
id text not null constraint block_meta_pk primary key, | ||
at text, | ||
number integer, | ||
hash text, | ||
parent_hash text, | ||
timestamp text | ||
); | ||
|
||
create table if not exists "public"."cursors" | ||
( | ||
id text not null constraint cursor_pk primary key, | ||
cursor text, | ||
block_num bigint, | ||
block_id text | ||
); | ||
|