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

20151110125604_add_import_error_to_project.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 793358c305e9276293bc3256eff0ff9107bbc34e (plain)
1
2
3
4
5
6
# rubocop:disable all
class AddImportErrorToProject < ActiveRecord::Migration
  def change
    add_column :projects, :import_error, :text
  end
end