On Wed, 2013-11-20 at 14:46 -0500, Adam Hutchins wrote: > On Wed, 2013-11-20 at 14:34 -0500, Adam Hutchins wrote: > > > Did you attempt the 4.0 -> 4.2 upgrade at some earlier point? > > Not that I'm aware of. > > That's extremely odd. Can you show the output of: > mysqldump -u root rt4 -p --no-data
This dump confirms that you either ran 'make initdb', or did a test upgrade, and did not drop the database before re-importing your backup. This results in some 4.2 tables still existing, with 4.0 schemas and data in the remainder of the database. Running: mysql -u root -p rt4 -e 'drop table ObjectScrips' ...should suffice to remove the extraneous table, and allow 'make upgrade-database' to complete. - Alex
