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

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