mirror of
https://github.com/featurebasedb/featurebase.git
synced 2026-09-09 14:41:02 +00:00
adding foreignIndex conf opt (#2239)
This commit is contained in:
parent
634c54e257
commit
694fb9b048
1 changed files with 2 additions and 0 deletions
|
|
@ -1702,6 +1702,7 @@ type SchemaOptions struct {
|
|||
TimeUnit string `json:"timeUnit"`
|
||||
Base int64 `json:"base"`
|
||||
Epoch time.Time `json:"epoch"`
|
||||
ForeignIndex string `json:"foreignIndex"`
|
||||
}
|
||||
|
||||
func (so SchemaOptions) asIndexOptions() *IndexOptions {
|
||||
|
|
@ -1728,6 +1729,7 @@ func (so SchemaOptions) asFieldOptions() *FieldOptions {
|
|||
timeUnit: so.TimeUnit,
|
||||
base: so.Base,
|
||||
epoch: so.Epoch,
|
||||
foreignIndex: so.ForeignIndex,
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue