gitlab-org--gitlab-foss/db/migrate/20160316192622_change_targe...

7 lines
153 B
Ruby
Raw Normal View History

# rubocop:disable all
2016-03-16 19:31:37 +00:00
class ChangeTargetIdToNullOnTodos < ActiveRecord::Migration
def change
change_column_null :todos, :target_id, true
end
end