summaryrefslogtreecommitdiff
path: root/db/migrate/20160316192622_change_target_id_to_null_on_todos.rb
blob: 65e0e61c78f6c8054b94e32855a88319bdfe8c43 (plain)
1
2
3
4
5
6
# rubocop:disable all
class ChangeTargetIdToNullOnTodos < ActiveRecord::Migration
  def change
    change_column_null :todos, :target_id, true
  end
end