Sha256: acd690a4d61d57ed8d5f44cada58933cda470534569189c7fd69b4d1fb87fff6
Contents?: true
Size: 1.24 KB
Versions: 2
Compression:
Stored size: 1.24 KB
Contents
require 'rein/util' module Rein module Constraint # This module contains methods for defining null constraints. module Null include ActiveRecord::ConnectionAdapters::Quoting def add_null_constraint(*args) reversible do |dir| dir.up { _add_null_constraint(*args) } dir.down { _remove_null_constraint(*args) } end end def remove_null_constraint(*args) reversible do |dir| dir.up { _remove_null_constraint(*args) } dir.down { _add_null_constraint(*args) } end end private def _add_null_constraint(table, attribute, options = {}) name = Util.constraint_name(table, attribute, 'null', options) table = Util.wrap_identifier(table) attribute = Util.wrap_identifier(attribute) conditions = Util.conditions_with_if("#{attribute} IS NOT NULL", options) execute("ALTER TABLE #{table} ADD CONSTRAINT #{name} CHECK (#{conditions})") end def _remove_null_constraint(table, attribute, options = {}) name = Util.constraint_name(table, attribute, 'null', 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-5.0.0 | lib/rein/constraint/null.rb |
rein-4.0.0 | lib/rein/constraint/null.rb |