File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
pkg/code/data/balance/postgres Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ import (
1212)
1313
1414const (
15- externalCheckpointTableName = "codewallet__core_balanceexternalcheckpoint "
15+ externalCheckpointTableName = "codewallet__core_externalbalancecheckpoint "
1616)
1717
1818type externalCheckpointModel struct {
Original file line number Diff line number Diff line change 2424const (
2525 // Used for testing ONLY, the table and migrations are external to this repository
2626 tableCreate = `
27- CREATE TABLE codewallet__core_balanceexternalcheckpoint (
27+ CREATE TABLE codewallet__core_externalbalancecheckpoint (
2828 id SERIAL NOT NULL PRIMARY KEY,
2929
3030 token_account TEXT NOT NULL,
@@ -39,7 +39,7 @@ const (
3939
4040 // Used for testing ONLY, the table and migrations are external to this repository
4141 tableDestroy = `
42- DROP TABLE codewallet__core_balanceexternalcheckpoint ;
42+ DROP TABLE codewallet__core_externalbalancecheckpoint ;
4343 `
4444)
4545
You can’t perform that action at this time.
0 commit comments