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: 1c39423562e2dee3ce05d081bc7bc57aaef79a93 (plain)
1
2
3
4
5
6
# rubocop:disable all
class AddWebsiteUrlToUsers < ActiveRecord::Migration
  def change
    add_column :users, :website_url, :string, {:null => false, :default => ''}
  end
end