gitlabhq/db/migrate/20120323221339_add_bio_fiel...

6 lines
125 B
Ruby

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