Source code for bw2data.search.schema from playhouse.sqlite_ext import FTS5Model, RowIDField, SearchField [docs] class BW2Schema(FTS5Model): [docs] rowid = RowIDField() [docs] name = SearchField() [docs] comment = SearchField() [docs] product = SearchField() [docs] categories = SearchField() [docs] synonyms = SearchField() [docs] location = SearchField() [docs] database = SearchField() [docs] code = SearchField() [docs] class Meta: [docs] options = {"tokenize": "unicode61"}