summaryrefslogtreecommitdiff
path: root/db/migrate/20160229193553_add_main_language_to_repository.rb
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