gitlabhq/db/migrate/20110916123731_add_name_to_user.rb

6 lines
107 B
Ruby
Raw Normal View History

2011-10-13 04:00:00 +03:00
class AddNameToUser < ActiveRecord::Migration
def change
add_column :users, :name, :string
end
end