Sha256: 7b6677de829272c389581c15d515190c1db92957923229f887dddb02a2ba043a

Contents?: true

Size: 850 Bytes

Versions: 152

Compression:

Stored size: 850 Bytes

Contents

Sequel.migration do
  change do
    create_table(:webhooks, charset: 'utf8') 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, charset: 'utf8') 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

152 entries across 152 versions & 1 rubygems

Version Path
pact_broker-2.79.1 db/migrations/000012_create_webhooks_table.rb
pact_broker-2.79.0 db/migrations/000012_create_webhooks_table.rb
pact_broker-2.78.1 db/migrations/000012_create_webhooks_table.rb
pact_broker-2.78.0 db/migrations/000012_create_webhooks_table.rb
pact_broker-2.77.0 db/migrations/000012_create_webhooks_table.rb
pact_broker-2.76.2 db/migrations/000012_create_webhooks_table.rb
pact_broker-2.76.1 db/migrations/000012_create_webhooks_table.rb
pact_broker-2.76.0 db/migrations/000012_create_webhooks_table.rb
pact_broker-2.75.0 db/migrations/000012_create_webhooks_table.rb
pact_broker-2.74.1 db/migrations/000012_create_webhooks_table.rb
pact_broker-2.74.0 db/migrations/000012_create_webhooks_table.rb
pact_broker-2.73.0 db/migrations/000012_create_webhooks_table.rb
pact_broker-2.72.0 db/migrations/000012_create_webhooks_table.rb
pact_broker-2.71.0 db/migrations/000012_create_webhooks_table.rb
pact_broker-2.70.0 db/migrations/000012_create_webhooks_table.rb
pact_broker-2.69.0 db/migrations/000012_create_webhooks_table.rb
pact_broker-2.68.1 db/migrations/000012_create_webhooks_table.rb
pact_broker-2.68.0 db/migrations/000012_create_webhooks_table.rb
pact_broker-2.67.0 db/migrations/000012_create_webhooks_table.rb
pact_broker-2.66.0 db/migrations/000012_create_webhooks_table.rb