Sha256: 7c8930ba62eb06216350fdc5f39361228b43f58f10d6aca537d0f7078d525792
Contents?: true
Size: 1.21 KB
Versions: 3
Compression:
Stored size: 1.21 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 { _add_presence_constraint(*args) } dir.down { _remove_presence_constraint(*args) } end end def remove_presence_constraint(*args) reversible do |dir| dir.up { _remove_presence_constraint(*args) } dir.down { _add_presence_constraint(*args) } end end private def _add_presence_constraint(table, attribute, options = {}) name = Util.constraint_name(table, attribute, "presence", options) 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) execute("ALTER TABLE #{table} DROP CONSTRAINT #{name}") end end end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
rein-3.2.0 | lib/rein/constraint/presence.rb |
rein-3.1.0 | lib/rein/constraint/presence.rb |
rein-3.0.0 | lib/rein/constraint/presence.rb |