From a31e837431ee131fbc6900f1b3c3d6ef09753f7a Mon Sep 17 00:00:00 2001 From: Ryuta Kamizono Date: Fri, 10 Jun 2016 07:57:22 +0900 Subject: Prevent `table_comment` query if a table doesn't have a comment --- activerecord/lib/active_record/schema_dumper.rb | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'activerecord/lib/active_record/schema_dumper.rb') diff --git a/activerecord/lib/active_record/schema_dumper.rb b/activerecord/lib/active_record/schema_dumper.rb index d769376d1a..1813bcd26a 100644 --- a/activerecord/lib/active_record/schema_dumper.rb +++ b/activerecord/lib/active_record/schema_dumper.rb @@ -132,10 +132,10 @@ HEADER tbl.print ", force: :cascade" table_options = @connection.table_options(table) - tbl.print ", options: #{table_options.inspect}" unless table_options.blank? - - if comment = @connection.table_comment(table).presence - tbl.print ", comment: #{comment.inspect}" + if table_options.present? + table_options.each do |key, value| + tbl.print ", #{key}: #{value.inspect}" if value.present? + end end tbl.puts " do |t|" -- cgit v1.2.3