Error/moodle/ddldependencyerror

From Learnit docs
Revision as of 10:51, 16 May 2019 by Docsadmin (talk | contribs) (Created page with "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 shou...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

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:

  1. drop the index first, then
  2. modify the field, and then
  3. re-create the index.

See also

  • MDL-22693