Sha256: 69b8f12b6c49dea0957f22dddbe7df5f33498c768ed9627ce6269db7863d1338
Contents?: true
Size: 1.02 KB
Versions: 52
Compression:
Stored size: 1.02 KB
Contents
module ActiveRecord module ConnectionAdapters module PostgreSQL module ReferentialIntegrity # :nodoc: def supports_disable_referential_integrity? # :nodoc: true end def disable_referential_integrity # :nodoc: if supports_disable_referential_integrity? begin execute(tables.collect { |name| "ALTER TABLE #{quote_table_name(name)} DISABLE TRIGGER ALL" }.join(";")) rescue execute(tables.collect { |name| "ALTER TABLE #{quote_table_name(name)} DISABLE TRIGGER USER" }.join(";")) end end yield ensure if supports_disable_referential_integrity? begin execute(tables.collect { |name| "ALTER TABLE #{quote_table_name(name)} ENABLE TRIGGER ALL" }.join(";")) rescue execute(tables.collect { |name| "ALTER TABLE #{quote_table_name(name)} ENABLE TRIGGER USER" }.join(";")) end end end end end end end
Version data entries
52 entries across 51 versions & 8 rubygems