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

20160316192622_change_target_id_to_null_on_todos.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 488c3d4945c2e12ccd2de6d6f707c089f06c470b (plain)
1
2
3
4
5
class ChangeTargetIdToNullOnTodos < ActiveRecord::Migration[4.2]
  def change
    change_column_null :todos, :target_id, true
  end
end