File tree 1 file changed +4
-11
lines changed
1 file changed +4
-11
lines changed Original file line number Diff line number Diff line change @@ -42,17 +42,9 @@ func (m *Migration) Init(query *query.Executor) error {
42
42
`
43
43
CREATE TABLE IF NOT EXISTS "mempool" (
44
44
"id" BLOB,
45
- "sender_account_type" INTEGER,
46
- "sender_account" TEXT,
47
- "recipient_account_type" INTEGER,
48
- "recipient_account" TEXT,
49
- "transaction_type" INTEGER,
50
- "fee" INTEGER,
51
- "timestamp" INTEGER,
52
- "transaction_hash" BLOB,
53
- "transaction_body_length" INTEGER,
54
- "transaction_body_bytes" BLOB,
55
- "signature" BLOB,
45
+ "fee_per_byte" INTEGER,
46
+ "arrival_timestamp" INTEGER,
47
+ "transaction_bytes" BLOB,
56
48
PRIMARY KEY("id")
57
49
);` ,
58
50
`
@@ -64,6 +56,7 @@ func (m *Migration) Init(query *query.Executor) error {
64
56
"recipient_account_id" BLOB,
65
57
"transaction_type" INTEGER,
66
58
"fee" INTEGER,
59
+ "timestamp" INTEGER,
67
60
"transaction_hash" BLOB,
68
61
"transaction_body_length" INTEGER,
69
62
"transaction_body_bytes" BLOB,
You can’t perform that action at this time.
0 commit comments