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

20140116231608_add_website_url_to_users.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0996fdcad73257dc31b728a2da9564b4715626c2 (plain)
1
2
3
4
5
class AddWebsiteUrlToUsers < ActiveRecord::Migration
  def change
    add_column :users, :website_url, :string, {:null => false, :default => ''}
  end
end