Welcome to mirror list, hosted at ThFree Co, Russian Federation.

20120323221339_add_bio_field_to_user.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 80a4dec5971c1718180758f3a566e8f14ced04a8 (plain)
1
2
3
4
5
class AddBioFieldToUser < ActiveRecord::Migration
  def change
    add_column :users, :bio, :string, :null => true
  end
end