lib/pact_broker/webhooks/execution.rb in pact_broker-2.24.0 vs lib/pact_broker/webhooks/execution.rb in pact_broker-2.25.0
- old
+ new
@@ -36,5 +36,21 @@
Execution.plugin :timestamps
end
end
+
+# Table: webhook_executions
+# Columns:
+# id | integer | PRIMARY KEY GENERATED BY DEFAULT AS IDENTITY
+# triggered_webhook_id | integer |
+# success | boolean | NOT NULL
+# logs | text |
+# created_at | timestamp without time zone | NOT NULL
+# Indexes:
+# webhook_executions_pkey | PRIMARY KEY btree (id)
+# Foreign key constraints:
+# webhook_executions_consumer_id_fkey | (consumer_id) REFERENCES pacticipants(id)
+# webhook_executions_pact_publication_id_fkey | (pact_publication_id) REFERENCES pact_publications(id)
+# webhook_executions_provider_id_fkey | (provider_id) REFERENCES pacticipants(id)
+# webhook_executions_triggered_webhook_id_fkey | (triggered_webhook_id) REFERENCES triggered_webhooks(id)
+# webhook_executions_webhook_id_fkey | (webhook_id) REFERENCES webhooks(id)