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
253 B

  1. CREATE TABLE filestore (
  2. file_id integer PRIMARY KEY,
  3. user_id integer NOT NULL,
  4. filename varchar(128) NOT NULL,
  5. mtime integer NOT NULL,
  6. data text NOT NULL
  7. );
  8. CREATE UNIQUE INDEX ix_filestore_user_id ON filestore(user_id, filename);