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: 9523ac722f2fa2144759e3cd268374eb1747e322 (plain)
1
2
3
4
5
class AddAvatarToProjects < ActiveRecord::Migration
  def change
    add_column :projects, :avatar, :string
  end
end