#10560: Add new fields to indexers

This commit is contained in:
jeremystretch
2022-11-15 10:37:35 -05:00
parent e051526da0
commit c6c9170c45
6 changed files with 53 additions and 3 deletions

View File

@@ -7,6 +7,7 @@ class ClusterIndex(SearchIndex):
model = models.Cluster
fields = (
('name', 100),
('description', 500),
('comments', 5000),
)
@@ -36,6 +37,7 @@ class VirtualMachineIndex(SearchIndex):
model = models.VirtualMachine
fields = (
('name', 100),
('description', 500),
('comments', 5000),
)