Class: ActiveRecord::SchemaDumper

Inherits:
Object
  • Object
show all
Defined in:
lib/active_record/schema_dumper.rb

Overview

Active Record Schema Dumper

This class is used to dump the database schema for some connection to some output format (i.e., ActiveRecord::Schema).

Direct Known Subclasses

ConnectionAdapters::SchemaDumper

Class Method Summary collapse

Instance Method Summary collapse

Class Method Details

.dump(connection = ActiveRecord::Base.connection, stream = STDOUT, config = ActiveRecord::Base) ⇒ Object



33
34
35
36
# File 'lib/active_record/schema_dumper.rb', line 33

def dump(connection = ActiveRecord::Base.connection, stream = STDOUT, config = ActiveRecord::Base)
  connection.create_schema_dumper(generate_options(config)).dump(stream)
  stream
end

Instance Method Details

#chk_ignore_patternObject

:singleton-method: Specify a custom regular expression matching check constraints which name should not be dumped to db/schema.rb.



30
# File 'lib/active_record/schema_dumper.rb', line 30

cattr_accessor :chk_ignore_pattern, default: /^chk_rails_[0-9a-f]{10}$/

#dump(stream) ⇒ Object



47
48
49
50
51
52
53
54
# File 'lib/active_record/schema_dumper.rb', line 47

def dump(stream)
  header(stream)
  extensions(stream)
  types(stream)
  tables(stream)
  trailer(stream)
  stream
end

#fk_ignore_patternObject

:singleton-method: Specify a custom regular expression matching foreign keys which name should not be dumped to db/schema.rb.



24
# File 'lib/active_record/schema_dumper.rb', line 24

cattr_accessor :fk_ignore_pattern, default: /^fk_rails_[0-9a-f]{10}$/

#ignore_tablesObject

:singleton-method: A list of tables which should not be dumped to the schema. Acceptable values are strings as well as regexp if ActiveRecord.schema_format == :ruby. Only strings are accepted if ActiveRecord.schema_format == :sql.



18
# File 'lib/active_record/schema_dumper.rb', line 18

cattr_accessor :ignore_tables, default: []