Soc/app/models/learning_goal.rb

9 lines
159 B
Ruby
Raw Normal View History

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