method
remove_check_constraint
v7.0.0 -
Show latest stable
- Class:
ActiveRecord::ConnectionAdapters::SchemaStatements
remove_check_constraint(table_name, expression = nil, **options)public
Removes the given check constraint from the table.
remove_check_constraint :products, name: "price_check"
The expression parameter will be ignored if present. It can be helpful to provide this in a migration’s change method so it can be reverted. In that case, expression will be used by #add_check_constraint.