You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
as an example of the one that was causing issues (edit: its the 20 character limit on BellScheduleDisplayName thats causing issues)
it seems this is currently being enforced/caught at the sqlalchemy layer by as a DataError. which is probably a dumb way to do it
pending further evaluation and root-causing as the affected column ((mysql.connector.errors.DataError) 1406 (22001): Data too long for column 'bell_schedule_display_name' at row 1) wasnt being given a string that was too long (only 27 ASCII characters). This will also likely require a schema change
The text was updated successfully, but these errors were encountered:
ClassClockAPI/common/db_schema.py
Line 46 in fa35cfe
it seems this is currently being enforced/caught at the sqlalchemy layer by as a DataError. which is probably a dumb way to do it
pending further evaluation and root-causing as the affected column (
(mysql.connector.errors.DataError) 1406 (22001): Data too long for column 'bell_schedule_display_name' at row 1
) wasnt being given a string that was too long (only 27 ASCII characters). This will also likely require a schema changeThe text was updated successfully, but these errors were encountered: