2017-06-23 21:19:08 +08:00
|
|
|
class RepositoryRow < ApplicationRecord
|
2017-06-23 22:06:11 +08:00
|
|
|
include SearchableModel
|
|
|
|
|
2019-01-17 22:04:20 +08:00
|
|
|
belongs_to :repository, optional: true
|
2017-06-28 21:21:32 +08:00
|
|
|
belongs_to :created_by,
|
|
|
|
foreign_key: :created_by_id,
|
|
|
|
class_name: 'User',
|
|
|
|
optional: true
|
|
|
|
belongs_to :last_modified_by,
|
|
|
|
foreign_key: :last_modified_by_id,
|
|
|
|
class_name: 'User',
|
|
|
|
optional: true
|
2018-08-07 20:19:49 +08:00
|
|
|
has_many :repository_cells, -> { order(:id) }, dependent: :destroy
|
2017-05-16 21:27:36 +08:00
|
|
|
has_many :repository_columns, through: :repository_cells
|
2017-06-07 19:36:39 +08:00
|
|
|
has_many :my_module_repository_rows,
|
2017-06-06 23:35:29 +08:00
|
|
|
inverse_of: :repository_row, dependent: :destroy
|
2017-06-07 19:36:39 +08:00
|
|
|
has_many :my_modules, through: :my_module_repository_rows
|
2017-05-16 21:27:36 +08:00
|
|
|
|
|
|
|
auto_strip_attributes :name, nullify: false
|
|
|
|
validates :name,
|
|
|
|
presence: true,
|
|
|
|
length: { maximum: Constants::NAME_MAX_LENGTH }
|
|
|
|
validates :created_by, presence: true
|
2018-04-26 20:13:46 +08:00
|
|
|
|
|
|
|
def self.assigned_on_my_module(ids, my_module)
|
|
|
|
where(id: ids).joins(:my_module_repository_rows)
|
|
|
|
.where('my_module_repository_rows.my_module' => my_module)
|
|
|
|
end
|
2018-05-16 15:31:19 +08:00
|
|
|
|
|
|
|
def self.name_like(query)
|
|
|
|
where('repository_rows.name ILIKE ?', "%#{query}%")
|
|
|
|
end
|
2017-05-16 21:27:36 +08:00
|
|
|
end
|