mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-12-29 11:45:18 +08:00
6 lines
161 B
Ruby
6 lines
161 B
Ruby
class Log < ActiveRecord::Base
|
|
validates :message, presence: true
|
|
validates :organization, presence: true
|
|
|
|
belongs_to :organization, inverse_of: :logs
|
|
end
|