I noticed that in the Performance Overview, there is an error for Database schema check. Further investigation shows that for bigbluebuttonbn (I am assuming that this is the table) that column 'recordings_deleted' is missing.

I cloned my VM and then in the clone, uninstalled and then reinstalled the BigBlueButton plugin. The schema error disappeared in the Performance Overview. Comparing the differences in the table bigbluebuttonbn on the production database vs. my clone shows that column 'recordings_deleted' has been added to the table. It seems that all the other column schemas are the same.
running the command show create table mdl_bigbluebuttonbn; shows the following column in my clone vm and is missing in production:
`recordings_deleted` tinyint(1) NOT NULL DEFAULT '1',
Am I safe to insert this column into the the production server database table, inserting it in the same column order as on my cloned database? I intend to use the following command:
ALTER TABLE mdl_bigbluebuttonbn ADD recordings_deleted tinyint(1) NOT NULL DEFAULT '1' AFTER recordings_html;
Of course I will backup my database before I continue.
Thank you for anyone's feedback.