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: ddbea9d7ab6f1581041001071e59a5c4d27b79e0 (plain)
1
2
3
4
5
6
7
8
9
class AddImportJidToProjects < ActiveRecord::Migration[4.2]
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false

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