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

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