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.79.1 db/migrations/20171117_create_webhook_events.rb
pact_broker-2.79.0 db/migrations/20171117_create_webhook_events.rb
pact_broker-2.78.1 db/migrations/20171117_create_webhook_events.rb
pact_broker-2.78.0 db/migrations/20171117_create_webhook_events.rb
pact_broker-2.77.0 db/migrations/20171117_create_webhook_events.rb
pact_broker-2.76.2 db/migrations/20171117_create_webhook_events.rb
pact_broker-2.76.1 db/migrations/20171117_create_webhook_events.rb
pact_broker-2.76.0 db/migrations/20171117_create_webhook_events.rb
pact_broker-2.75.0 db/migrations/20171117_create_webhook_events.rb
pact_broker-2.74.1 db/migrations/20171117_create_webhook_events.rb
pact_broker-2.74.0 db/migrations/20171117_create_webhook_events.rb
pact_broker-2.73.0 db/migrations/20171117_create_webhook_events.rb
pact_broker-2.72.0 db/migrations/20171117_create_webhook_events.rb
pact_broker-2.71.0 db/migrations/20171117_create_webhook_events.rb
pact_broker-2.70.0 db/migrations/20171117_create_webhook_events.rb
pact_broker-2.69.0 db/migrations/20171117_create_webhook_events.rb
pact_broker-2.68.1 db/migrations/20171117_create_webhook_events.rb
pact_broker-2.68.0 db/migrations/20171117_create_webhook_events.rb
pact_broker-2.67.0 db/migrations/20171117_create_webhook_events.rb
pact_broker-2.66.0 db/migrations/20171117_create_webhook_events.rb