ClusterCockpit / cc-backend

Web frontend and API backend server for ClusterCockpit Monitoring Framework
https://www.clustercockpit.org
MIT License
16 stars 14 forks source link

Can't save color scheme for time series plots #167

Closed oscarminus closed 1 year ago

oscarminus commented 1 year ago

When i try to change the colorscheme for the time series plots in the preferences, an error shows up and the change isn't saved:

Update: Error: Response Code 422-> Error 1406 (22001): Data too long for column 'value' at row 1

The database uses a varchar(255) for the configuration value. This might be to small and should be changed to a text field.

alter table configuration modify value text;