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

20140312145357_add_import_status_to_project.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9947cd8c6f9c37ac89521f529f9cd797058bc68f (plain)
1
2
3
4
5
6
# rubocop:disable all
class AddImportStatusToProject < ActiveRecord::Migration
  def change
    add_column :projects, :import_status, :string
  end
end