Hmm, yep I'm missing version number in npc_types. Strange because I went back to sql 612_instance_changes and the only npc_types change is 
	Code:
	ALTER TABLE `npc_types` ADD `adventure_template_id` INT UNSIGNED DEFAULT '0' NOT NULL AFTER `npc_faction_id`;
 So I guess I need to do something like
	Code:
	ALTER TABLE `npc_types` ADD `version` INT UNSIGNED DEFAULT '0' NOT NULL AFTER `slow_mitigation`;
 
I couldn't find any other recent sql changes that added version. I may just be missing it though. I'll give the above a try and see if it works.
*edit* Yep that did the trick.