catalyst / moodle-mod_scormremote

A Moodle activity for serving SCORM packages remotely to another LMS across domains
https://moodle.org/plugins/mod_scormremote
Other
9 stars 3 forks source link

primarydomain DROP NOT NULL needed on upgrade #49

Open brendanheywood opened 1 year ago

brendanheywood commented 1 year ago

In some testing I got an upgrade error, didn't grab the stack trace but it was barfing because the primarydomain column can't be null and it was I believe temporarily null during the upgrade. I had to fix it manually:

ALTER TABLE mdl_scormremote_clients ALTER COLUMN primarydomain DROP NOT NULL;