Application settings

The application settings of PermaplanT can be customized in the Database table application_settings.

Changing Heat Map colours

There is no validation or fallback colors if there are no values for heatmap colors in the application_settings table.

There are 4 colours:

  • heatmap_red
  • heatmap_orange
  • heatmap_green
  • heatmap_black

The settings only allow colours to be defined in hex code (case-insensitive).

Example value for heatmap_red: d1433f

To see the current application settings, run:

SELECT * FROM application_settings

To change the colours in the application_settings table, run the following command; inserting the wanted colour as value and the wanted colour as key.

UPDATE application_settings SET value = '...' WHERE key = '...';