mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 02:11:08 -06:00
10 lines
255 B
Ruby
10 lines
255 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
module DiscourseAutomation
|
||
|
class PendingAutomation < ActiveRecord::Base
|
||
|
self.table_name = "discourse_automation_pending_automations"
|
||
|
|
||
|
belongs_to :automation, class_name: "DiscourseAutomation::Automation"
|
||
|
end
|
||
|
end
|