-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update latest entity tables on chain pruning (#387)
* Add a table for entites in frothy region * Update latest entity tables on chain pruning
- Loading branch information
1 parent
9d31def
commit e913d26
Showing
4 changed files
with
135 additions
and
22 deletions.
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,21 @@ | ||
// | ||
// Copyright 2022 Vulcanize, Inc. | ||
// | ||
|
||
import { Entity, PrimaryColumn, Column, Index } from 'typeorm'; | ||
|
||
@Entity() | ||
@Index(['blockNumber']) | ||
export class FrothyEntity { | ||
@PrimaryColumn('varchar') | ||
id!: string; | ||
|
||
@PrimaryColumn('varchar') | ||
name!: string; | ||
|
||
@PrimaryColumn('varchar', { length: 66 }) | ||
blockHash!: string; | ||
|
||
@Column('integer') | ||
blockNumber!: number; | ||
} |
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