mirror of
https://github.com/modoboa/modoboa.git
synced 2026-04-26 17:36:01 +03:00
[GH-ISSUE #951] Better parameters management #813
Labels
No labels
bug
bug
dependencies
design
documentation
duplicate
enhancement
enhancement
enhancement
feedback-needed
help-needed
help-needed
installer
invalid
looking-for-sponsors
modoboa-contacts
new-ui
new-ui
pr
pull-request
pyconfr
python
question
security
stale
webmail
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/modoboa-modoboa#813
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
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?
Originally created by @tonioo on GitHub (Oct 23, 2016).
Original GitHub issue: https://github.com/modoboa/modoboa/issues/951
The current way to store parameters in the SQL database is wrong (EAV tables) and not performant.
The easiet way to improve this would be to use a JSON field but there is no simple way to create a model compatible with all supported database engines.
Another solution, less performant but better than the current implementation, would be to manually encode/decode data using JSON and store it into a text field.