Skip to content

Commit 73a89d1

Browse files
authored
added missing new columns to table schema (#110)
1 parent a51c1b0 commit 73a89d1

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

core/database/sql-schemas/transactions.sql

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,9 @@ CREATE TABLE IF NOT EXISTS transactions (
2424
"gasLimit" VARCHAR(255),
2525
"maxPriorityFeePerGas" VARCHAR(255),
2626
"maxFeePerGas" VARCHAR(255),
27-
"txValue" VARCHAR(100)
27+
"txValue" VARCHAR(100),
28+
"txMinedTimestamp" TIMESTAMP,
29+
"blockNumber" BIGINT
2830
);
2931

3032
ALTER TABLE transactions

0 commit comments

Comments
 (0)