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

20150211174341_allow_null_in_services_project_id.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 68f0281279159537ca2cbb2990e967fd3d3d7277 (plain)
1
2
3
4
5
class AllowNullInServicesProjectId < ActiveRecord::Migration
  def change
    change_column :services, :project_id, :integer, null: true
  end
end