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: 5d393364ee6667ae01d4898524279cf3fd5bf491 (plain)
1
2
3
4
5
class AddImportDataToProject < ActiveRecord::Migration[4.2]
  def change
    add_column :projects, :import_data, :text
  end
end