gitlabhq/db/migrate/20120323221339_add_bio_field_to_user.rb
2012-03-24 01:01:36 +02:00

6 lines
125 B
Ruby

class AddBioFieldToUser < ActiveRecord::Migration
def change
add_column :users, :bio, :string, :null => true
end
end