updateRow method

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