method

exclusion_constraint_for

Importance_0
v7.1.3.4 - Show latest stable - 0 notes - Class: SchemaStatements
exclusion_constraint_for(table_name, **options) public

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File activerecord/lib/active_record/connection_adapters/postgresql/schema_statements.rb, line 1039
          def exclusion_constraint_for(table_name, **options)
            excl_name = exclusion_constraint_name(table_name, **options)
            exclusion_constraints(table_name).detect { |excl| excl.name == excl_name }
          end
Register or log in to add new notes.