updateRow method

Updates a single RuntimeSettings. The row needs to have its id set. Optionally, a list of columns can be provided to only update those columns. Defaults to all columns.

Implementation

Future<RuntimeSettings> updateRow(
  _is.DatabaseSession session,
  RuntimeSettings row, {
  _is.ColumnSelections<RuntimeSettingsTable>? columns,
  _is.Transaction? transaction,
}) async {
  return session.db.updateRow<RuntimeSettings>(
    row,
    columns: columns?.call(RuntimeSettings.t),
    transaction: transaction,
  );
}