Module: PgSequencer::SchemaDumper

Extended by:
ActiveSupport::Concern
Defined in:
lib/pg_sequencer/schema_dumper.rb

Instance Method Summary collapse

Instance Method Details

#tables_with_sequences(stream) ⇒ Object



9
10
11
12
# File 'lib/pg_sequencer/schema_dumper.rb', line 9

def tables_with_sequences(stream)
  tables_without_sequences(stream)
  sequences(stream)
end