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