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: f1af925c4217fc72287ae064ffe9a06b9e7e243c (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 # rubocop:disable Migration/AddColumnsToWideTables
  end
end