gitlabhq/db/migrate/20120323221339_add_bio_field_to_user.rb

6 lines
125 B
Ruby
Raw Normal View History

2012-03-24 00:01:36 +01:00
class AddBioFieldToUser < ActiveRecord::Migration
def change
add_column :users, :bio, :string, :null => true
end
end