mirror of
https://github.com/lldap/lldap.git
synced 2026-04-25 08:15:52 +03:00
[GH-ISSUE #486] MySQL schema uses BLOB instead of LONGBLOB #180
Labels
No labels
backend
blocked
bug
cleanup
dependencies
docker
documentation
duplicate
enhancement
enhancement
frontend
github_actions
good first issue
help wanted
help wanted
integration
invalid
ldap
pull-request
question
rust
rust
tests
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/lldap-lldap#180
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 @pixelrazor on GitHub (Mar 20, 2023).
Original GitHub issue: https://github.com/lldap/lldap/issues/486
Discovered when testing #484. MySQL BLOB is limited to 64kb, which is far too small for avatar. It looks like avatar is already configured properly, but it that doesn't appear to be effecting the schema creation.
@pixelrazor commented on GitHub (Mar 20, 2023):
Digging more i found that the issue is probable here where we create it without the binary size. Do we need to change that or the v2 migration to do the right type? or maybe add a v3 migration to upgrade that type?
@nitnelave commented on GitHub (Mar 20, 2023):
We'll probably need to do a fancy dance like we do with display_name at the end of the migration file to move the columns around and change the type, using a v3 migration marker.