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

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