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 (
12
12
)
13
13
14
14
const (
15
- externalCheckpointTableName = "codewallet__core_balanceexternalcheckpoint "
15
+ externalCheckpointTableName = "codewallet__core_externalbalancecheckpoint "
16
16
)
17
17
18
18
type externalCheckpointModel struct {
Original file line number Diff line number Diff line change 24
24
const (
25
25
// Used for testing ONLY, the table and migrations are external to this repository
26
26
tableCreate = `
27
- CREATE TABLE codewallet__core_balanceexternalcheckpoint (
27
+ CREATE TABLE codewallet__core_externalbalancecheckpoint (
28
28
id SERIAL NOT NULL PRIMARY KEY,
29
29
30
30
token_account TEXT NOT NULL,
@@ -39,7 +39,7 @@ const (
39
39
40
40
// Used for testing ONLY, the table and migrations are external to this repository
41
41
tableDestroy = `
42
- DROP TABLE codewallet__core_balanceexternalcheckpoint ;
42
+ DROP TABLE codewallet__core_externalbalancecheckpoint ;
43
43
`
44
44
)
45
45
You can’t perform that action at this time.
0 commit comments