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

20170405080720_add_import_jid_to_projects.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 55b87b9d56d0da8bdbc11b60f8cfcd1f1ccd0ac7 (plain)
1
2
3
4
5
6
7
8
9
class AddImportJidToProjects < ActiveRecord::Migration
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false

  def change
    add_column :projects, :import_jid, :string
  end
end