https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=27158
--- Comment #5 from Jonathan Druart <[email protected]> --- So you don't have the column. That's very weird, it has been added by 3.19.00.038, so a long time ago. From which Koha version did you upgrade? You can try the two following queries, to add the missing column, but you should have seen an error during the upgrade. ALTER TABLE virtualshelves ADD COLUMN created_on DATETIME NOT NULL AFTER lastmodified; UPDATE virtualshelves SET created_on = lastmodified, lastmodified = lastmodified; -- You are receiving this mail because: You are watching all bug changes. _______________________________________________ Koha-bugs mailing list [email protected] https://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs website : http://www.koha-community.org/ git : http://git.koha-community.org/ bugs : http://bugs.koha-community.org/
