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

20150116234544_add_home_page_url_for_application_settings.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 10e6549c7298e1d0d789c0ab611f6087fd7dcc1d (plain)
1
2
3
4
5
6
# rubocop:disable all
class AddHomePageUrlForApplicationSettings < ActiveRecord::Migration
  def change
    add_column :application_settings, :home_page_url, :string
  end
end