Sha256: eb3770299ccb8642e9ee2a15643ff6180ebe23804525145df055ece1f5319986

Contents?: true

Size: 391 Bytes

Versions: 99

Compression:

Stored size: 391 Bytes

Contents

require_relative 'migration_helper'

Sequel.migration do
  change do
    create_table(:webhook_events, charset: 'utf8') do
      primary_key :id
      foreign_key :webhook_id, :webhooks, on_delete: :cascade
      String :name
      DateTime :created_at, null: false
      DateTime :updated_at, null: false
      index [:id, :name], unique: true, name: 'uq_webhook_id_name'
    end
  end
end

Version data entries

99 entries across 99 versions & 1 rubygems

Version Path
pact_broker-2.36.1 db/migrations/20171117_create_webhook_events.rb
pact_broker-2.36.0 db/migrations/20171117_create_webhook_events.rb
pact_broker-2.35.0 db/migrations/20171117_create_webhook_events.rb
pact_broker-2.34.0 db/migrations/20171117_create_webhook_events.rb
pact_broker-2.33.0 db/migrations/20171117_create_webhook_events.rb
pact_broker-2.32.0 db/migrations/20171117_create_webhook_events.rb
pact_broker-2.31.0 db/migrations/20171117_create_webhook_events.rb
pact_broker-2.30.0 db/migrations/20171117_create_webhook_events.rb
pact_broker-2.29.0 db/migrations/20171117_create_webhook_events.rb
pact_broker-2.27.6 db/migrations/20171117_create_webhook_events.rb
pact_broker-2.27.5 db/migrations/20171117_create_webhook_events.rb
pact_broker-2.27.4 db/migrations/20171117_create_webhook_events.rb
pact_broker-2.27.3 db/migrations/20171117_create_webhook_events.rb
pact_broker-2.27.2 db/migrations/20171117_create_webhook_events.rb
pact_broker-2.27.0 db/migrations/20171117_create_webhook_events.rb
pact_broker-2.26.1 db/migrations/20171117_create_webhook_events.rb
pact_broker-2.26.0 db/migrations/20171117_create_webhook_events.rb
pact_broker-2.25.0 db/migrations/20171117_create_webhook_events.rb
pact_broker-2.24.0 db/migrations/20171117_create_webhook_events.rb
pact_broker-2.23.4 db/migrations/20171117_create_webhook_events.rb