Soc/app/models/learning_goal.rb

8 lines
144 B
Ruby
Raw Normal View History

2024-01-06 09:42:36 +00:00
class LearningGoal < ApplicationRecord
belongs_to :user
has_rich_text :description, :retrospective
validates :title, presence: true
end