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

20190924124627_add_pull_mirror_branch_prefix_to_projects.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b9f729d7d663c0504bba3f645383bec596644de2 (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

class AddPullMirrorBranchPrefixToProjects < ActiveRecord::Migration[5.2]
  DOWNTIME = false

  def change
    add_column :projects, :pull_mirror_branch_prefix, :string, limit: 50
  end
end