Skip to content

Commit 75fbd4a

Browse files
committed
[ci skip] Fix broken strict option link in MySQL adapter (4-2-stable)
http://dev.mysql.com/doc/refman/5.0/en/server-sql-mode.html is broken. New link: http://dev.mysql.com/doc/refman/5.0/en/sql-mode.html
1 parent 63a8099 commit 75fbd4a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

activerecord/lib/active_record/connection_adapters/mysql_adapter.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ module ConnectionAdapters
5757
# * <tt>:database</tt> - The name of the database. No default, must be provided.
5858
# * <tt>:encoding</tt> - (Optional) Sets the client encoding by executing "SET NAMES <encoding>" after connection.
5959
# * <tt>:reconnect</tt> - Defaults to false (See MySQL documentation: http://dev.mysql.com/doc/refman/5.0/en/auto-reconnect.html).
60-
# * <tt>:strict</tt> - Defaults to true. Enable STRICT_ALL_TABLES. (See MySQL documentation: http://dev.mysql.com/doc/refman/5.0/en/server-sql-mode.html)
60+
# * <tt>:strict</tt> - Defaults to true. Enable STRICT_ALL_TABLES. (See MySQL documentation: http://dev.mysql.com/doc/refman/5.0/en/sql-mode.html)
6161
# * <tt>:variables</tt> - (Optional) A hash session variables to send as <tt>SET @@SESSION.key = value</tt> on each database connection. Use the value +:default+ to set a variable to its DEFAULT value. (See MySQL documentation: http://dev.mysql.com/doc/refman/5.0/en/set-statement.html).
6262
# * <tt>:sslca</tt> - Necessary to use MySQL with an SSL connection.
6363
# * <tt>:sslkey</tt> - Necessary to use MySQL with an SSL connection.

0 commit comments

Comments
 (0)