You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
internal_exec_query("UPDATE #{quote_table_name(table_name)} SET #{quote_column_name(column_name)}=#{quote(default)} WHERE #{quote_column_name(column_name)} IS NULL")
317
312
end
@@ -720,6 +715,16 @@ class SQLite3Adapter < AbstractAdapter
720
715
includeArJdbc::Abstract::StatementCache
721
716
includeArJdbc::Abstract::TransactionSupport
722
717
718
+
##
719
+
# :singleton-method:
720
+
# Configure the SQLite3Adapter to be used in a strict strings mode.
721
+
# This will disable double-quoted string literals, because otherwise typos can silently go unnoticed.
722
+
# For example, it is possible to create an index for a non existing column.
723
+
# If you wish to enable this mode you can add the following line to your application.rb file:
0 commit comments