Skip to content

Commit

Permalink
remove extra space
Browse files Browse the repository at this point in the history
  • Loading branch information
colindickson committed Sep 22, 2023
1 parent a83a88b commit 9276fe2
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 1 deletion.
1 change: 0 additions & 1 deletion cmd/substreams/info.go
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,6 @@ func runInfo(cmd *cobra.Command, args []string) error {
}

if info.SinkInfo != nil {
fmt.Println()
fmt.Println("Sink config:")
fmt.Println("----")
fmt.Println("type:", info.SinkInfo.TypeUrl)
Expand Down
18 changes: 18 additions & 0 deletions here/schema
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
);

0 comments on commit 9276fe2

Please sign in to comment.