Sha256: 1e2953056533ad0713d7ea692bf6687087a622b15659cec3a15c315b176ae0f6
Contents?: true
Size: 386 Bytes
Versions: 44
Compression:
Stored size: 386 Bytes
Contents
require "pact_broker/db/data_migrations/helpers" module PactBroker module DB module DataMigrations class SetWebhooksEnabled extend Helpers def self.call(connection) if column_exists?(connection, :webhooks, :enabled) connection[:webhooks].where(enabled: nil).update(enabled: true) end end end end end end
Version data entries
44 entries across 44 versions & 1 rubygems