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-02-25 03:09:12 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2020-02-25 03:09:12 +0300
commit0b881f91159cc97ccb7328a2e52977a60ea83fbe (patch)
treed6b683cb935112aee47121f46e3c5dc84de24f2c /db/migrate/20200219105209_add_filepath_to_release_links.rb
parent7671216b60e2796a050358ff808b4a0c2de3d22f (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'db/migrate/20200219105209_add_filepath_to_release_links.rb')
-rw-r--r--db/migrate/20200219105209_add_filepath_to_release_links.rb8
1 files changed, 8 insertions, 0 deletions
diff --git a/db/migrate/20200219105209_add_filepath_to_release_links.rb b/db/migrate/20200219105209_add_filepath_to_release_links.rb
new file mode 100644
index 00000000000..bcc204c22e8
--- /dev/null
+++ b/db/migrate/20200219105209_add_filepath_to_release_links.rb
@@ -0,0 +1,8 @@
+# frozen_string_literal: true
+class AddFilepathToReleaseLinks < ActiveRecord::Migration[6.0]
+ DOWNTIME = false
+
+ def change
+ add_column :release_links, :filepath, :string, limit: 128
+ end
+end