forgeplus/app/models/item_choice.rb

6 lines
184 B
Ruby
Raw Normal View History

2020-03-09 00:40:16 +08:00
class ItemChoice < ApplicationRecord
belongs_to :item_bank, touch: true
validates :choice_text, presence: true, length: { maximum: 500, too_long: "不能超过500个字符" }
end