18 lines
437 B
Ruby
18 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
|