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

20131005191208_add_avatar_to_users.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7b4de37ad72369481793ec72a1ce99ec867f21ba (plain)
1
2
3
4
5
class AddAvatarToUsers < ActiveRecord::Migration
  def change
    add_column :users, :avatar, :string
  end
end