You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
from django_elasticsearch_dsl import DocType, Index
from .models import File
textfile = Index('textfiles')
@textfile.doc_type
class FileDocument(DocType):
class Meta:
model = File
fields = (
'name',
'description',
)
after running ./manage.py search index --create/--rebuild :
documents.py :
after running ./manage.py search index --create/--rebuild :
The text was updated successfully, but these errors were encountered: