debian-mirror-gitlab/db/migrate/20190924124627_add_pull_mirror_branch_prefix_to_projects.rb
2019-12-21 20:55:43 +05:30

10 lines
220 B
Ruby

# 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