Sha256: b58caff6bfd6568b1039c49987d500e77e235cc57888eafde4467a8ef0cf4935
Contents?: true
Size: 578 Bytes
Versions: 15
Compression:
Stored size: 578 Bytes
Contents
# frozen_string_literal: true module Decidim module TermCustomizer class TranslationSet < TermCustomizer::ApplicationRecord self.table_name = "decidim_term_customizer_translation_sets" has_many :translations, class_name: "Decidim::TermCustomizer::Translation", foreign_key: :translation_set_id, dependent: :destroy has_many :constraints, class_name: "Decidim::TermCustomizer::Constraint", foreign_key: :translation_set_id, dependent: :destroy end end end
Version data entries
15 entries across 15 versions & 1 rubygems