require "active_support" require "active_record" require "active_record/connection_adapters/cipherstash_pg/database_extensions" require "active_record/connection_adapters/cipherstash_pg/database_tasks" require "active_record/connection_adapters/cipherstash_pg/railtie" if defined?(Rails::Railtie) module ActiveRecord module ConnectionAdapters module CipherStashPG # Method to install CipherStash custom ORE types def self.install CipherStashPG::DatabaseExtensions.install end # Method to uninstall CipherStash custom ORE types def self.uninstall CipherStashPG::DatabaseExtensions.uninstall end end end end