Method: Sequel::Postgres::AlterTableGenerator#validate_constraint
- Defined in:
- lib/sequel/adapters/shared/postgres.rb
#validate_constraint(name) ⇒ Object
Validate the constraint with the given name, which should have been added previously with NOT VALID.
164 165 166 |
# File 'lib/sequel/adapters/shared/postgres.rb', line 164 def validate_constraint(name) @operations << {:op => :validate_constraint, :name => name} end |