Error/moodle/ddldependencyerror: различия между версиями
Материал из База знаний Центра ПУСК МФТИ
1>Dougiamas New page: One reason for this error is that some upgrade code is trying to modify a field that has an index attached to it. When a developer wants to change a field like this they should: # drop t... |
м 1 версия импортирована |
(нет различий)
| |
Текущая версия от 06:53, 18 октября 2024
One reason for this error is that some upgrade code is trying to modify a field that has an index attached to it.
When a developer wants to change a field like this they should:
- drop the index first, then
- modify the field, and then
- re-create the index.
See also
- MDL-22693