---
title: UpdateOptions
source: https://github.com/remix-run/remix/blob/remix@3.0.0-beta.3/packages/data-table/src/lib/database.ts#L254
---

# UpdateOptions

## Summary

Options for updating a single row.

## Signature

```ts
type UpdateOptions<table, relations> = {
  touch?: boolean;
  with?: relations;
};

```