RoundCube Webmail
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
368 B

  1. CREATE TABLE responses (
  2. response_id integer NOT NULL PRIMARY KEY,
  3. user_id integer NOT NULL default '0',
  4. changed datetime NOT NULL default '0000-00-00 00:00:00',
  5. del tinyint NOT NULL default '0',
  6. name varchar(255) NOT NULL,
  7. data text NOT NULL,
  8. is_html tinyint NOT NULL default '0'
  9. );
  10. CREATE UNIQUE INDEX ix_responses_user_id ON responses(user_id, del);