gitlabhq/db/migrate/20110916123731_add_name_to_user.rb

6 lines
107 B
Ruby
Raw Permalink Normal View History

2011-10-08 23:36:38 +02:00
class AddNameToUser < ActiveRecord::Migration
def change
add_column :users, :name, :string
end
end