gitlabhq/db/migrate/20121123104937_add_username_to_user.rb

6 lines
127 B
Ruby
Raw Permalink Normal View History

class AddUsernameToUser < ActiveRecord::Migration
def change
add_column :users, :username, :string, null: true
end
end