updateRow method

Updates a single ServerHealthConnectionInfo. 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<ServerHealthConnectionInfo> updateRow(
  _is.DatabaseSession session,
  ServerHealthConnectionInfo row, {
  _is.ColumnSelections<ServerHealthConnectionInfoTable>? columns,
  _is.Transaction? transaction,
}) async {
  return session.db.updateRow<ServerHealthConnectionInfo>(
    row,
    columns: columns?.call(ServerHealthConnectionInfo.t),
    transaction: transaction,
  );
}