mirror of
https://github.com/discourse/discourse.git
synced 2024-11-26 03:33:39 +08:00
21 lines
551 B
Ruby
21 lines
551 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
class RedeliveringWebhookEvent < ActiveRecord::Base
|
||
|
belongs_to :web_hook_event
|
||
|
end
|
||
|
|
||
|
# == Schema Information
|
||
|
#
|
||
|
# Table name: redelivering_webhook_events
|
||
|
#
|
||
|
# id :bigint not null, primary key
|
||
|
# web_hook_event_id :bigint not null
|
||
|
# processing :boolean default(FALSE), not null
|
||
|
# created_at :datetime not null
|
||
|
# updated_at :datetime not null
|
||
|
#
|
||
|
# Indexes
|
||
|
#
|
||
|
# index_redelivering_webhook_events_on_web_hook_event_id (web_hook_event_id)
|
||
|
#
|