updateRow method

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