Sha256: bfbce3fe1cefc5bc61c8bc73b018459f7ebdf3cf59ebbd830ed689b6815dcaae
Contents?: true
Size: 526 Bytes
Versions: 44
Compression:
Stored size: 526 Bytes
Contents
require "pact_broker/db/data_migrations/helpers" module PactBroker module DB module DataMigrations class DeleteDeprecatedWebhookExecutions extend Helpers def self.call(connection) if columns_exist?(connection) connection[:webhook_executions].where(triggered_webhook_id: nil).delete end end def self.columns_exist?(connection) column_exists?(connection, :webhook_executions, :triggered_webhook_id) end end end end end
Version data entries
44 entries across 44 versions & 1 rubygems