mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-14 21:24:54 +08:00
18 lines
508 B
Ruby
18 lines
508 B
Ruby
class RepositoryCell < ActiveRecord::Base
|
|
belongs_to :repository_row
|
|
belongs_to :repository_column
|
|
belongs_to :value, polymorphic: true, dependent: :destroy
|
|
|
|
validates :repository_column, presence: true
|
|
validate :repository_column_data_type
|
|
validates :repository_row,
|
|
uniqueness: { scope: :repository_column }
|
|
|
|
private
|
|
|
|
def repository_column_data_type
|
|
if value_type != repository_column.data_type
|
|
errors.add(:value_type, 'must match column data type')
|
|
end
|
|
end
|
|
end
|