Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/db
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2021-03-02 21:11:20 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2021-03-02 21:11:20 +0300
commitbf2439c21308c74e437b872180046b39a61734b5 (patch)
treed6f1fe33eb4b726e4e9f11350b8838dae2fc53f4 /db
parent426384d091a0c229ff849ed6ba481bfbe700fb6a (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'db')
-rw-r--r--db/migrate/20210218142626_change_finding_fingerprint_enum.rb15
-rw-r--r--db/schema_migrations/202102181426261
-rw-r--r--db/structure.sql2
3 files changed, 17 insertions, 1 deletions
diff --git a/db/migrate/20210218142626_change_finding_fingerprint_enum.rb b/db/migrate/20210218142626_change_finding_fingerprint_enum.rb
new file mode 100644
index 00000000000..615509e0c04
--- /dev/null
+++ b/db/migrate/20210218142626_change_finding_fingerprint_enum.rb
@@ -0,0 +1,15 @@
+# frozen_string_literal: true
+
+class ChangeFindingFingerprintEnum < ActiveRecord::Migration[6.0]
+ include Gitlab::Database::MigrationHelpers
+
+ DOWNTIME = false
+
+ def up
+ change_column :vulnerability_finding_fingerprints, :algorithm_type, :integer, limit: 2
+ end
+
+ def down
+ change_column :vulnerability_finding_fingerprints, :algorithm_type, :integer
+ end
+end
diff --git a/db/schema_migrations/20210218142626 b/db/schema_migrations/20210218142626
new file mode 100644
index 00000000000..e23a8139ffb
--- /dev/null
+++ b/db/schema_migrations/20210218142626
@@ -0,0 +1 @@
+063c97800eec5bfc7f6879dbe559fa39952295d5ba947cf44ad03ac23212e924 \ No newline at end of file
diff --git a/db/structure.sql b/db/structure.sql
index 7d10a327477..d0632eab17a 100644
--- a/db/structure.sql
+++ b/db/structure.sql
@@ -18258,7 +18258,7 @@ CREATE TABLE vulnerability_finding_fingerprints (
finding_id bigint NOT NULL,
created_at timestamp with time zone NOT NULL,
updated_at timestamp with time zone NOT NULL,
- algorithm_type integer NOT NULL,
+ algorithm_type smallint NOT NULL,
fingerprint_sha256 bytea NOT NULL
);