Sha256: 58050e3540295ff8c96a6565ba4d79d0aef39c3b5b7e4c46db86455fae1c46c8
Contents?: true
Size: 531 Bytes
Versions: 44
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
44 entries across 44 versions & 1 rubygems