# frozen_string_literal: true module Legion module Data module Model # Used for accessing legion.functions class Function < Sequel::Model many_to_one :namespace one_to_many :trigger_functions, class: :Relationship, key: :trigger_id one_to_many :action_functions, class: :Relationship, key: :action_id end end end end