Sha256: 1a7ee696c175e14ef8c66a23e5790fa070d2ffed4b75658ff66aa3b0f8117d54

Contents?: true

Size: 812 Bytes

Versions: 2

Compression:

Stored size: 812 Bytes

Contents

Sequel.migration do
  change do
    alter_table(:webhook_executions) do
      add_foreign_key :triggered_webhook_id, :triggered_webhooks
      set_column_allow_null(:webhook_id)
      set_column_allow_null(:pact_publication_id)
      set_column_allow_null(:consumer_id)
      set_column_allow_null(:provider_id)
    end

    # Hope old code doesn't insert another webhook in the meantime!

    # TODO drop_column(:webhook_executions, :webhook_id)
    # TODO drop_column(:webhook_executions, :webhook_uuid)
    # TODO drop_column(:webhook_executions, :pact_publication_id)
    # TODO drop_column(:webhook_executions, :consumer_id)
    # TODO drop_column(:webhook_executions, :provider_id)

    # TODO
    # alter_table(:triggered_webhooks) do
    #  set_column_not_null(:triggered_webhook_id)
    # end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
pact_broker-2.5.1 db/migrations/39_add_triggered_webhooks_fk_to_execution.rb
pact_broker-2.5.0 db/migrations/39_add_triggered_webhooks_fk_to_execution.rb