Created
July 14, 2014 06:07
-
-
Save maxy/0fdd74a9f6c27c14cda0 to your computer and use it in GitHub Desktop.
Revisions
-
maxy created this gist
Jul 14, 2014 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,10 @@ module ActiveRecord module ConnectionAdapters alias_method :base_configure_connection, :configure_connection def configure_connection valiables = base_configure_connection @connection.set_error_verbosity(PG::PQERRORS_VERBOSE) valiables end end end