File tree Expand file tree Collapse file tree 2 files changed +19
-1
lines changed Expand file tree Collapse file tree 2 files changed +19
-1
lines changed Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ $(XGO):
23
23
.PHONY : golangci-lint
24
24
golangci-lint : $(GOLANGCILINT )
25
25
$(info running linter...)
26
- golangci-lint run --timeout=20m
26
+ golangci-lint run --timeout=20m -v
27
27
28
28
.PHONY : go-fmt
29
29
go-fmt :
Original file line number Diff line number Diff line change @@ -324,6 +324,24 @@ func (m *Migration) Init() error {
324
324
`
325
325
CREATE INDEX "main_block_id_idx" ON "main_block" ("id")
326
326
` ,
327
+ `
328
+ CREATE INDEX "published_receipt_rmr_linked_idx" ON "published_receipt" ("rmr_linked")
329
+ ` ,
330
+ `
331
+ CREATE INDEX "merkle_tree_id_idx" ON "merkle_tree" ("id")
332
+ ` ,
333
+ `
334
+ CREATE INDEX "merkle_tree_block_height_idx" ON "merkle_tree" ("block_height")
335
+ ` ,
336
+ `
337
+ CREATE INDEX "node_receipt_rmr_idx" ON "node_receipt" ("rmr")
338
+ ` ,
339
+ `
340
+ CREATE INDEX "node_receipt_recipient_public_key_idx" ON "node_receipt" ("recipient_public_key")
341
+ ` ,
342
+ `
343
+ CREATE INDEX "node_receipt_reference_block_height_idx" ON "node_receipt" ("reference_block_height")
344
+ ` ,
327
345
}
328
346
return nil
329
347
}
You can’t perform that action at this time.
0 commit comments