3a21c904dd
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
19 lines
548 B
Ruby
19 lines
548 B
Ruby
# == Schema Information
|
|
#
|
|
# Table name: deploy_keys_projects
|
|
#
|
|
# id :integer not null, primary key
|
|
# deploy_key_id :integer not null
|
|
# project_id :integer not null
|
|
# created_at :datetime
|
|
# updated_at :datetime
|
|
#
|
|
|
|
class DeployKeysProject < ActiveRecord::Base
|
|
belongs_to :project
|
|
belongs_to :deploy_key
|
|
|
|
validates :deploy_key_id, presence: true
|
|
validates :deploy_key_id, uniqueness: { scope: [:project_id], message: "already exists in project" }
|
|
validates :project_id, presence: true
|
|
end
|