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.

15 lines
457 B

  1. CREATE SEQUENCE "filestore_seq"
  2. INCREMENT BY 1
  3. NO MAXVALUE
  4. NO MINVALUE
  5. CACHE 1;
  6. CREATE TABLE "filestore" (
  7. file_id integer DEFAULT nextval('filestore_seq'::text) PRIMARY KEY,
  8. user_id integer NOT NULL
  9. REFERENCES users (user_id) ON DELETE CASCADE ON UPDATE CASCADE,
  10. filename varchar(128) NOT NULL,
  11. mtime integer NOT NULL,
  12. data text NOT NULL,
  13. CONSTRAINT filestore_user_id_filename UNIQUE (user_id, filename)
  14. );