2019-02-20 16:29:48 -05:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module Ci
|
2019-03-28 09:17:42 -04:00
|
|
|
class PipelineChatData < ApplicationRecord
|
2019-02-20 16:29:48 -05:00
|
|
|
self.table_name = 'ci_pipeline_chat_data'
|
|
|
|
|
|
|
|
belongs_to :chat_name
|
|
|
|
|
|
|
|
validates :pipeline_id, presence: true
|
|
|
|
validates :chat_name_id, presence: true
|
|
|
|
validates :response_url, presence: true
|
|
|
|
end
|
|
|
|
end
|