summaryrefslogtreecommitdiff
path: root/www/wiki/extensions/Translate/sql/translate_groupreviews.sql
blob: f7574b8f67ce12e2d8ad5a348ed7874785324280 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
-- Message group workflow states
CREATE TABLE /*$wgDBprefix*/translate_groupreviews (
  -- The length we need to accommodate "page-" + the full pagename including
  -- prefix. That could be 255 + prefix (length not limited), but page
  -- translation section pages limit that to shorter, because it needs to
  -- accommodate /sectionname/languagecode suffix to the page name.
  tgr_group varchar(200) binary NOT NULL,
  tgr_lang varchar(20) binary NOT NULL,
  -- Any of user configured values from $wgTranslateWorkflowStates
  tgr_state varbinary(32) NOT NULL,

	PRIMARY KEY (tgr_group, tgr_lang)
) /*$wgDBTableOptions*/;