Remove path requirement from basis and project in state

This commit is contained in:
Chris Roberts 2021-08-05 11:05:26 -07:00 committed by Paul Hinze
parent ff973e380c
commit e9c3494778
No known key found for this signature in database
GPG Key ID: B69DEDF2D55501C0
2 changed files with 2 additions and 2 deletions

View File

@ -275,7 +275,7 @@ func basisIndexSchema() *memdb.TableSchema {
},
basisIndexPathIndexName: {
Name: basisIndexPathIndexName,
AllowMissing: false,
AllowMissing: true,
Unique: true,
Indexer: &memdb.StringFieldIndex{
Field: "Path",

View File

@ -347,7 +347,7 @@ func projectIndexSchema() *memdb.TableSchema {
},
projectIndexPathIndexName: {
Name: projectIndexPathIndexName,
AllowMissing: false,
AllowMissing: true,
Unique: true,
Indexer: &memdb.StringFieldIndex{
Field: "Path",