File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -30,14 +30,14 @@ import (
30
30
const (
31
31
ProviderType = "mysql"
32
32
33
- lookupStmt = "SELECT EntryUUIDs FROM EntryIndex WHERE EntryKey IN (?)"
34
- writeStmt = "INSERT IGNORE INTO EntryIndex (EntryKey, EntryUUIDs ) VALUES (:key, :uuid)"
33
+ lookupStmt = "SELECT EntryUUID FROM EntryIndex WHERE EntryKey IN (?)"
34
+ writeStmt = "INSERT IGNORE INTO EntryIndex (EntryKey, EntryUUID ) VALUES (:key, :uuid)"
35
35
createTableStmt = `CREATE TABLE IF NOT EXISTS EntryIndex (
36
36
PK BIGINT UNSIGNED NOT NULL AUTO_INCREMENT,
37
37
EntryKey varchar(512) NOT NULL,
38
- EntryUUIDs char(80) NOT NULL,
38
+ EntryUUID char(80) NOT NULL,
39
39
PRIMARY KEY(PK),
40
- UNIQUE(EntryKey, EntryUUIDs )
40
+ UNIQUE(EntryKey, EntryUUID )
41
41
)`
42
42
)
43
43
You can’t perform that action at this time.
0 commit comments