From c6503f019fd2bbe25751eacca5a1483bc30e1b08 Mon Sep 17 00:00:00 2001 From: vrana Date: Mon, 5 Nov 2012 13:08:50 -0800 Subject: [PATCH] Start Ponder questions from 11 Summary: We don't link Q1 - Q4. Test Plan: Created the table, insterted row, verified that the id is 11. Reviewers: pieter, epriestley Reviewed By: pieter CC: aran, Korvin Differential Revision: https://secure.phabricator.com/D3891 --- resources/sql/patches/ponder.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/sql/patches/ponder.sql b/resources/sql/patches/ponder.sql index 1123c097a3..86e36a075b 100644 --- a/resources/sql/patches/ponder.sql +++ b/resources/sql/patches/ponder.sql @@ -14,7 +14,7 @@ CREATE TABLE `{$NAMESPACE}_ponder`.`ponder_question` ( UNIQUE KEY `phid` (`phid`), KEY `authorPHID` (`authorPHID`), KEY `heat` (`heat`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; +) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=11; CREATE TABLE `{$NAMESPACE}_ponder`.`ponder_answer` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT,