Sha256: fc34d8b2f5bcbde33ce2ebcb115bb7cb9f77e8cebda315eca678a55a950e6c13
Contents?: true
Size: 1.36 KB
Versions: 2
Compression:
Stored size: 1.36 KB
Contents
require 'rein/util' module Rein module Constraint # This module contains methods for defining presence constraints. module Presence include ActiveRecord::ConnectionAdapters::Quoting def add_presence_constraint(*args) reversible do |dir| dir.up do _add_presence_constraint(*args) end dir.down { _remove_presence_constraint(*args) } end end def remove_presence_constraint(*args) reversible do |dir| dir.up do _remove_presence_constraint(*args) end dir.down { _add_presence_constraint(*args) } end end private def _add_presence_constraint(table, attribute, options = {}) name = Util.constraint_name(table, attribute, 'presence', options) table = Util.wrap_identifier(table) attribute = Util.wrap_identifier(attribute) conditions = Util.conditions_with_if( "(#{attribute} IS NOT NULL) AND (#{attribute} !~ '^\\s*$')", options ) execute("ALTER TABLE #{table} ADD CONSTRAINT #{name} CHECK (#{conditions})") end def _remove_presence_constraint(table, attribute, options = {}) name = Util.constraint_name(table, attribute, 'presence', options) table = Util.wrap_identifier(table) execute("ALTER TABLE #{table} DROP CONSTRAINT #{name}") end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
rein-3.5.0 | lib/rein/constraint/presence.rb |
rein-3.4.0 | lib/rein/constraint/presence.rb |