# When working with experimental extensions, which doesn't have support on all providers # This monkey patch will help us to ignore the extensions when dumping the schema # Additionally we will also ignore the tables associated with those features and exentions # Once the feature stabilizes, we can remove the tables/extension from the ignore list # Ensure you write appropriate migrations when you do that. module ActiveRecord module ConnectionAdapters module PostgreSQL class SchemaDumper < ConnectionAdapters::SchemaDumper cattr_accessor :ignore_extentions, default: [] private def extensions(stream) extensions = @connection.extensions return unless extensions.any? stream.puts ' # These are extensions that must be enabled in order to support this database' extensions.sort.each do |extension| stream.puts " enable_extension #{extension.inspect}" unless ignore_extentions.include?(extension) end stream.puts end end end end end ## Extentions / Tables to be ignored ActiveRecord::ConnectionAdapters::PostgreSQL::SchemaDumper.ignore_extentions << 'vector' ActiveRecord::SchemaDumper.ignore_tables << 'responses' ActiveRecord::SchemaDumper.ignore_tables << 'response_sources' ActiveRecord::SchemaDumper.ignore_tables << 'response_documents' ActiveRecord::SchemaDumper.ignore_tables << 'inbox_response_sources'