module Sequel::ConstraintValidations::CreateTableGeneratorMethods

def validate(&block)

Call into the validate DSL for creating constraint validations.
def validate(&block)
  Generator.new(self).process(&block)
end

def validation(opts)

Add a validation metadata hash to the stored array.
def validation(opts)
  @validations << opts
end