1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-11-18 12:52:42 +01:00

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
This commit is contained in:
vrana 2012-11-05 13:08:50 -08:00
parent 4d79d462fb
commit c6503f019f

View file

@ -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,