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

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