@Field var category: String // Added field
results in the following code inside the initializer
self.category = try! String // Added field.init(fromPersistent: String // Added field.PersistentRepresentation.decode(sqliteValue: fields["category"]!))!
and in _fieldInformation
Vein.FieldInformation(String // Added field.sqliteTypeName, "category", true),
This can likely be fixed by doing a substring until the first /
I’m not sure yet if default values are affected as well, this needs to be tested
results in the following code inside the initializer
and in
_fieldInformationThis can likely be fixed by doing a substring until the first /
I’m not sure yet if default values are affected as well, this needs to be tested