Sha256: 4aeefe8f1efb28f8768278662dc2d1a282ec17386f3f8a044816e8552f409c34
Contents?: true
Size: 531 Bytes
Versions: 122
Compression:
Stored size: 531 Bytes
Contents
require_relative 'migration_helper' Sequel.migration do change do create_table(:webhook_executions, charset: 'utf8') do primary_key :id foreign_key :webhook_id, :webhooks foreign_key :pact_publication_id, :pact_publications foreign_key :consumer_id, :pacticipants, null: false foreign_key :provider_id, :pacticipants, null: false Boolean :success, null: false String :logs, type: PactBroker::MigrationHelper.large_text_type DateTime :created_at, null: false end end end
Version data entries
122 entries across 122 versions & 1 rubygems