https://bugzilla.wikimedia.org/show_bug.cgi?id=46433

--- Comment #2 from Jeroen De Dauw <[email protected]> ---
This is what the code on master looks like:

CREATE TABLE IF NOT EXISTS /*_*/surveys (
  survey_id                SMALLINT unsigned   NOT NULL auto_increment PRIMARY
KEY,
  survey_name              VARCHAR(255)        NOT NULL, -- String indentifier
for the survey
  survey_title             VARCHAR(255)        NOT NULL, -- Title of the survey
  survey_enabled           TINYINT             NOT NULL default '0', -- If the
survey can be taken by users
  survey_header            TEXT                NOT NULL, -- Text to display
above the survey
  survey_footer            TEXT                NOT NULL, -- Text to display
below the survey
  survey_thanks            TEXT                NOT NULL, -- Text to display
after survey submission
  survey_user_type         TINYINT unsigned    NOT NULL default '0', -- Type of
users that can participate in the survey
  survey_namespaces        BLOB                NOT NULL, -- Namespaces on which
the survey can be displayed
  survey_ratio             TINYINT unsigned    NOT NULL, -- Percentage of users
to show the survey to
  survey_expiry            INT unsigned        NOT NULL, -- Coockie expiry time
for the survey
  survey_min_pages         TINYINT unsigned    NOT NULL -- Min amount of pages
the user needs to view before getting the survey
) /*$wgDBTableOptions*/;

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are watching all bug changes.
_______________________________________________
Wikibugs-l mailing list
[email protected]
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l

Reply via email to