one line schema change to not allow missing for sessions Table node index, Fixes #1774
This commit is contained in:
parent
ecc617008a
commit
25613895e3
|
@ -263,7 +263,7 @@ func sessionsTableSchema() *memdb.TableSchema {
|
|||
},
|
||||
"node": &memdb.IndexSchema{
|
||||
Name: "node",
|
||||
AllowMissing: true,
|
||||
AllowMissing: false,
|
||||
Unique: false,
|
||||
Indexer: &memdb.StringFieldIndex{
|
||||
Field: "Node",
|
||||
|
|
Loading…
Reference in a new issue