@@ -115,7 +115,7 @@ def insert(attributes, returning: nil, unique_by: nil, record_timestamps: nil)
115
115
# ==== Options
116
116
#
117
117
# [:returning]
118
- # (PostgreSQL and MariaDB only) An array of attributes to return for all successfully
118
+ # (PostgreSQL, SQLite3, and MariaDB only) An array of attributes to return for all successfully
119
119
# inserted records, which by default is the primary key.
120
120
# Pass <tt>returning: %w[ id name ]</tt> for both id and name
121
121
# or <tt>returning: false</tt> to omit the underlying <tt>RETURNING</tt> SQL
@@ -205,7 +205,7 @@ def insert!(attributes, returning: nil, record_timestamps: nil)
205
205
# ==== Options
206
206
#
207
207
# [:returning]
208
- # (PostgreSQL and MariaDB only) An array of attributes to return for all successfully
208
+ # (PostgreSQL, SQLite3, and MariaDB only) An array of attributes to return for all successfully
209
209
# inserted records, which by default is the primary key.
210
210
# Pass <tt>returning: %w[ id name ]</tt> for both id and name
211
211
# or <tt>returning: false</tt> to omit the underlying <tt>RETURNING</tt> SQL
@@ -271,7 +271,7 @@ def upsert(attributes, **kwargs)
271
271
# ==== Options
272
272
#
273
273
# [:returning]
274
- # (PostgreSQL and MariaDB only) An array of attributes to return for all successfully
274
+ # (PostgreSQL, SQLite3, and MariaDB only) An array of attributes to return for all successfully
275
275
# inserted records, which by default is the primary key.
276
276
# Pass <tt>returning: %w[ id name ]</tt> for both id and name
277
277
# or <tt>returning: false</tt> to omit the underlying <tt>RETURNING</tt> SQL
0 commit comments