Sha256: 646f22a92d1d49185f7a3b78bd1083385d2541bbc98170c8008d7af6af71b4ba

Contents?: true

Size: 816 Bytes

Versions: 11

Compression:

Stored size: 816 Bytes

Contents

Sequel.migration do
  change do
    create_table(:webhooks) do
      primary_key :id
      String :uuid, null: false, unique: true, unique_constraint_name: 'uq_webhook_uuid'
      String :method, null: false
      String :url, null: false
      String :body
      Boolean :is_json_request_body
      foreign_key :consumer_id, :pacticipants, null: false, foreign_key_constraint_name: 'fk_webhooks_consumer'
      foreign_key :provider_id, :pacticipants, null: false, foreign_key_constraint_name: 'fk_webhooks_provider'
    end

    create_table(:webhook_headers) do
      String :name, null: false
      String :value
      foreign_key :webhook_id, :webhooks, null: false, foreign_key_constraint_name: 'fk_webhookheaders_webhooks'
      primary_key [:webhook_id, :name], :name=>:webhooks_headers_pk
    end
  end
end

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
pact_broker-1.8.1 db/migrations/12_create_webhooks_table.rb
pact_broker-1.8.0 db/migrations/12_create_webhooks_table.rb
pact_broker-1.7.0 db/migrations/12_create_webhooks_table.rb
pact_broker-1.6.0 db/migrations/12_create_webhooks_table.rb
pact_broker-1.5.0 db/migrations/12_create_webhooks_table.rb
pact_broker-1.4.0 db/migrations/12_create_webhooks_table.rb
pact_broker-1.3.2.rc1 db/migrations/12_create_webhooks_table.rb
pact_broker-1.3.1 db/migrations/12_create_webhooks_table.rb
pact_broker-1.3.0 db/migrations/12_create_webhooks_table.rb
pact_broker-1.2.0 db/migrations/12_create_webhooks_table.rb
pact_broker-1.1.0 db/migrations/12_create_webhooks_table.rb