Remove auto incremement values from FULL script too

This commit is contained in:
james 2006-07-12 14:36:29 +00:00
parent ba38372fb5
commit f117fb3dae

View File

@ -820,7 +820,7 @@ CREATE TABLE `questions` (
`required` enum('no','yes') NOT NULL default 'yes', `required` enum('no','yes') NOT NULL default 'yes',
`ord` int(11) NOT NULL default '0', `ord` int(11) NOT NULL default '0',
PRIMARY KEY (`id`) PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=11 ; ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-- -------------------------------------------------------- -- --------------------------------------------------------
@ -835,7 +835,7 @@ CREATE TABLE `question_answers` (
`answer` varchar(32) NOT NULL default '', `answer` varchar(32) NOT NULL default '',
`year` int(11) NOT NULL default '0', `year` int(11) NOT NULL default '0',
PRIMARY KEY (`id`) PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=59 ; ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-- Now insert everything -- Now insert everything