mirror of
https://github.com/moodle/moodle.git
synced 2025-03-24 01:20:27 +01:00
Other similar columns config.value and config_plugins.value are TEXT, so it is surprising that this column is different, and that has lead to bugs in the past, so we should make it consistent.
11 lines
426 B
YAML
11 lines
426 B
YAML
issueNumber: MDL-46739
|
|
notes:
|
|
core:
|
|
- message: >-
|
|
The {user_preferences}.value database field is now TEXT instead of CHAR.
|
|
This means that any queries with a condition on this field in a WHERE or
|
|
JOIN statement will need updating to use `$DB->sql_compare_text()`. See
|
|
the `$newusers` query in
|
|
`\core\task\send_new_users_password_task::execute` for an example.
|
|
type: changed
|