Insert FTS5 Data (it wasn't easy)

This commit is contained in:
Simon Martens
2025-02-16 15:00:05 +01:00
parent 3c0314814d
commit 16d1e39a2e
8 changed files with 599 additions and 158 deletions

View File

@@ -26,6 +26,14 @@ func (p *Place) SetName(name string) {
p.Set(PLACES_NAME_FIELD, name)
}
func (p *Place) Pseudonyms() string {
return p.GetString(PLACES_PSEUDONYMS_FIELD)
}
func (p *Place) SetPseudonyms(pseudonyms string) {
p.Set(PLACES_PSEUDONYMS_FIELD, pseudonyms)
}
func (p *Place) Fictional() bool {
return p.GetBool(PLACES_FICTIONAL_FIELD)
}