Class: ActiveRecord::ConnectionAdapters::CheckConstraintDefinition

Inherits:
Struct
  • Object
show all
Defined in:
activerecord/lib/active_record/connection_adapters/abstract/schema_definitions.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from Struct

#as_json

Instance Attribute Details

#expressionObject

Returns the value of attribute expression

Returns:

  • (Object)

    the current value of expression



171
172
173
# File 'activerecord/lib/active_record/connection_adapters/abstract/schema_definitions.rb', line 171

def expression
  @expression
end

#optionsObject

Returns the value of attribute options

Returns:

  • (Object)

    the current value of options



171
172
173
# File 'activerecord/lib/active_record/connection_adapters/abstract/schema_definitions.rb', line 171

def options
  @options
end

#table_nameObject

Returns the value of attribute table_name

Returns:

  • (Object)

    the current value of table_name



171
172
173
# File 'activerecord/lib/active_record/connection_adapters/abstract/schema_definitions.rb', line 171

def table_name
  @table_name
end

Instance Method Details

#defined_for?(name:, expression: nil, validate: nil, **options) ⇒ Boolean

Returns:

  • (Boolean)


185
186
187
188
189
# File 'activerecord/lib/active_record/connection_adapters/abstract/schema_definitions.rb', line 185

def defined_for?(name:, expression: nil, validate: nil, **options)
  self.name == name.to_s &&
    (validate.nil? || validate == self.options.fetch(:validate, validate)) &&
    options.all? { |k, v| self.options[k].to_s == v.to_s }
end

#export_name_on_schema_dump?Boolean

Returns:

  • (Boolean)


181
182
183
# File 'activerecord/lib/active_record/connection_adapters/abstract/schema_definitions.rb', line 181

def export_name_on_schema_dump?
  !ActiveRecord::SchemaDumper.chk_ignore_pattern.match?(name) if name
end

#nameObject



172
173
174
# File 'activerecord/lib/active_record/connection_adapters/abstract/schema_definitions.rb', line 172

def name
  options[:name]
end

#validate?Boolean Also known as: validated?

Returns:

  • (Boolean)


176
177
178
# File 'activerecord/lib/active_record/connection_adapters/abstract/schema_definitions.rb', line 176

def validate?
  options.fetch(:validate, true)
end