From c6c838503ff0567b3e4f2b0e96952709aa5cf7cc Mon Sep 17 00:00:00 2001 From: Sven Slootweg Date: Thu, 7 Mar 2013 21:21:51 +0100 Subject: [PATCH] For sanity's sake, we want the auto-increment to start from 1, not from left-over test values... --- structure.sql | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/structure.sql b/structure.sql index cb57352..f97e3cb 100644 --- a/structure.sql +++ b/structure.sql @@ -25,7 +25,7 @@ CREATE TABLE IF NOT EXISTS `emails` ( `EmailAddress` varchar(250) NOT NULL, `Key` varchar(16) NOT NULL, PRIMARY KEY (`Id`) -) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=876 ; +) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; -- -------------------------------------------------------- @@ -43,7 +43,7 @@ CREATE TABLE IF NOT EXISTS `entries` ( `Finished` tinyint(3) unsigned NOT NULL, `DiskUsage` bigint(20) NOT NULL, PRIMARY KEY (`Id`) -) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1038 ; +) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; -- -------------------------------------------------------- @@ -57,4 +57,4 @@ CREATE TABLE IF NOT EXISTS `servers` ( `Busy` tinyint(3) unsigned NOT NULL, `Current` int(10) unsigned NOT NULL, PRIMARY KEY (`Id`) -) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=17 ; +) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;