discourse/plugins/automation/app/models/discourse_automation/pending_automation.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
255 B
Ruby
Raw Normal View History

# 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