instance method
has_expression_column_name?
Ruby on Rails edge
Since edge Private — implementation detail, not part of the public APISignature
has_expression_column_name?(column_names)
No documentation comment.
Parameters
-
column_namesreq
Source
# File activerecord/lib/active_record/connection_adapters/abstract/schema_statements.rb, line 1901
def has_expression_column_name?(column_names)
column_names.any? { |name| expression_column_name?(name) }
end
Defined in activerecord/lib/active_record/connection_adapters/abstract/schema_statements.rb line 1901
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in ActiveRecord::ConnectionAdapters::SchemaStatements