debian-mirror-gitlab/app/models/project_ci_cd_setting.rb
2019-07-07 11:18:12 +05:30

19 lines
437 B
Ruby

# frozen_string_literal: true
class ProjectCiCdSetting < ApplicationRecord
belongs_to :project, inverse_of: :ci_cd_settings
# The version of the schema that first introduced this model/table.
MINIMUM_SCHEMA_VERSION = 20180403035759
def self.available?
@available ||=
ActiveRecord::Migrator.current_version >= MINIMUM_SCHEMA_VERSION
end
def self.reset_column_information
@available = nil
super
end
end