mirror of
https://github.com/grocy/grocy.git
synced 2025-04-29 17:45:39 +00:00
5 lines
190 B
SQL
5 lines
190 B
SQL
UPDATE user_settings
|
|
SET value = '10'
|
|
WHERE key IN ('stock_decimal_places_amounts', 'stock_decimal_places_prices_input', 'stock_decimal_places_prices_display')
|
|
AND CAST(value AS INT) > 10;
|