updateRow method

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