All Downloads are FREE. Search and download functionalities are using the official Maven repository.

sql.migration.V20150422120100__CreateFiles.sql Maven / Gradle / Ivy

There is a newer version: 3.0.0
Show newest version
CREATE TABLE files (
  id bigint NOT NULL,
  access_salt text NOT NULL,
  s3_upload_key text NOT NULL,
  is_uploaded boolean default false NOT NULL,
  PRIMARY KEY (id)
);

CREATE INDEX on files(s3_upload_key);

CREATE TABLE file_parts (
  file_id bigint NOT NULL,
  number int NOT NULL,
  size int NOT NULL,
  s3_upload_key text NOT NULL,
  PRIMARY KEY (file_id, number)
)




© 2015 - 2024 Weber Informatics LLC | Privacy Policy