http://bugs.winehq.org/show_bug.cgi?id=58510
--- Comment #4 from Stian Low wineryyyyy@gmail.com --- (In reply to Ken Sharp from comment #3)
How were the versions populated originally?
via winehq_appdb_stianlow/tables/bugzilla_tables.sql which was removed during the DB separation merge:
-- WineHQ Bugzilla for AppDB Development
/* * versions information */
CREATE TABLE `versions` ( `value` varchar(64) NOT NULL default '', `product_id` smallint(6) NOT NULL default '0', `id` mediumint(9) NOT NULL auto_increment, PRIMARY KEY (`id`), UNIQUE KEY `versions_product_id_idx` (`product_id`,`value`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 PACK_KEYS=1;
-- -- Dumping data for table `versions` --
INSERT INTO `versions` VALUES ('unspecified',1,1); INSERT INTO `versions` VALUES ('CVS',1,2); INSERT INTO `versions` VALUES ('unspecified',2,3); INSERT INTO `versions` VALUES ('unspecified',3,4); INSERT INTO `versions` VALUES ('unspecified',4,5); INSERT INTO `versions` VALUES ('20010305',1,6); INSERT INTO `versions` VALUES ('20010216',1,7); INSERT INTO `versions` VALUES ('20010112',1,8); INSERT INTO `versions` VALUES ('20010326',1,9);