ORM Model flaschengeist use is deprecated/legacy. #27
Labels
No Label
🛃 types
👪 users
invalid
wontfix
🚀 announcement
🎒 backend
🐞 bug
🐋 docker
💡 enhancement
📺 frontend
🤔 question
🔗duplicate
No Milestone
No project
No Assignees
1 Participants
Notifications
Due Date
No due date set.
Dependencies
No dependencies set.
Reference: Flaschengeist/flaschengeist#27
Loading…
Reference in New Issue
No description provided.
Delete Branch "%!s(<nil>)"
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?
to execute Queries like
User.query.all()
is legacy. Maybe you get detached errors since SQLAlchemy 1.4.Refactor all SQLAlchemy queries to
db.session.execute(db.select(User)).all()
No deprecation warnings since
47442fe211
.But legacy ORM is still in used.