Sha256: 95633767399a33806e46e4fbc9949e3b8fc91045f28c65d34ac7ef1c1c0fc2ee
Contents?: true
Size: 268 Bytes
Versions: 13
Compression:
Stored size: 268 Bytes
Contents
# frozen_string_literal: true module Decidim module Forms class AnswerOption < Forms::ApplicationRecord default_scope { order(arel_table[:id].asc) } belongs_to :question, class_name: "Question", foreign_key: "decidim_question_id" end end end
Version data entries
13 entries across 13 versions & 1 rubygems