7 lines
125 B
Ruby
7 lines
125 B
Ruby
class EntryVersion < ApplicationRecord
|
|
belongs_to :entry
|
|
belongs_to :user
|
|
|
|
validates :changes_made, presence: true
|
|
end
|