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.

9 lines
313 B

  1. CREATE TABLE uploads (
  2. upload_id varchar(64) NOT NULL PRIMARY KEY,
  3. session_id varchar(128) NOT NULL,
  4. "group" varchar(128) NOT NULL,
  5. metadata text NOT NULL,
  6. created datetime NOT NULL default '0000-00-00 00:00:00'
  7. );
  8. CREATE INDEX ix_uploads_session_id ON uploads(session_id, "group", created);