Implement index assignments #22
Loading…
Reference in New Issue
No description provided.
Delete Branch "tvb/turn-assignment"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
In implementing this, I found that using the existing Sqlalchemy ORM relationships to do simple lookups like "all characters in lexicon" is easier than adding methods to the respective backend classes. I think in the spirit of "premature optimization is the root of all evil", this is a good pattern to follow for now, and the relationships can be configured to do loads in a performant way (or replaced with optimized backend queries) when that becomes the development concern.