diff options
author | GitLab Bot <gitlab-bot@gitlab.com> | 2023-04-12 18:17:07 +0000 |
---|---|---|
committer | GitLab Bot <gitlab-bot@gitlab.com> | 2023-04-12 18:17:07 +0000 |
commit | 6ce6d20cf0b81275bad7bf8e95cf49bd475c5c4f (patch) | |
tree | ba258f58856f457f94daf4b3dbf85045f4e07acc /db/structure.sql | |
parent | c1a7bcdf1bfef9455bc58b1737f52530bf681a90 (diff) | |
download | gitlab-ce-6ce6d20cf0b81275bad7bf8e95cf49bd475c5c4f.tar.gz |
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'db/structure.sql')
-rw-r--r-- | db/structure.sql | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/db/structure.sql b/db/structure.sql index 1fe90c6f031..d5d04ff6878 100644 --- a/db/structure.sql +++ b/db/structure.sql @@ -19276,7 +19276,7 @@ CREATE TABLE packages_debian_group_component_files ( compression_type smallint, file_store smallint DEFAULT 1 NOT NULL, file text NOT NULL, - file_md5 bytea NOT NULL, + file_md5 bytea, file_sha256 bytea NOT NULL, CONSTRAINT check_839e1685bc CHECK ((char_length(file) <= 255)) ); @@ -19401,7 +19401,7 @@ CREATE TABLE packages_debian_project_component_files ( compression_type smallint, file_store smallint DEFAULT 1 NOT NULL, file text NOT NULL, - file_md5 bytea NOT NULL, + file_md5 bytea, file_sha256 bytea NOT NULL, CONSTRAINT check_e5af03fa2d CHECK ((char_length(file) <= 255)) ); |