lib/torque/postgresql/adapter/schema_dumper.rb in torque-postgresql-2.1.0 vs lib/torque/postgresql/adapter/schema_dumper.rb in torque-postgresql-2.1.1

- old
+ new

@@ -41,16 +41,16 @@ def tables(stream) # :nodoc: inherited_tables = @connection.inherited_tables sorted_tables = @connection.tables.sort - @connection.views - stream.puts " # These are the common tables managed" + stream.puts " # These are the common tables" (sorted_tables - inherited_tables.keys).each do |table_name| table(table_name, stream) unless ignored?(table_name) end if inherited_tables.present? - stream.puts " # These are tables that has inheritance" + stream.puts " # These are tables that have inheritance" inherited_tables.each do |table_name, inherits| next if ignored?(table_name) sub_stream = StringIO.new table(table_name, sub_stream)