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
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2020-03-20 03:09:29 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2020-03-20 03:09:29 +0300
commitb060b8b7e4e895e28226b366b92081512225cd14 (patch)
tree0364ce1045b2e0a1cc3cad7b0d487e254335b66c /db/migrate/20200318152134_adds_sha256_to_package_files.rb
parent49a923c646a2c24b5377cfde8236c73094c60d42 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'db/migrate/20200318152134_adds_sha256_to_package_files.rb')
-rw-r--r--db/migrate/20200318152134_adds_sha256_to_package_files.rb9
1 files changed, 9 insertions, 0 deletions
diff --git a/db/migrate/20200318152134_adds_sha256_to_package_files.rb b/db/migrate/20200318152134_adds_sha256_to_package_files.rb
new file mode 100644
index 00000000000..26d2c1b97d4
--- /dev/null
+++ b/db/migrate/20200318152134_adds_sha256_to_package_files.rb
@@ -0,0 +1,9 @@
+# frozen_string_literal: true
+
+class AddsSha256ToPackageFiles < ActiveRecord::Migration[6.0]
+ DOWNTIME = false
+
+ def change
+ add_column :packages_package_files, :file_sha256, :binary
+ end
+end