You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: apps/docs/content/docs/tables/index.mdx
+3Lines changed: 3 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -24,9 +24,12 @@ Every column has a type, which decides how its values are stored and validated.
24
24
|**Currency**| An amount in a currency you pick per column |`$1,234.56`|
25
25
|**Boolean**|`true` or `false`|`true`|
26
26
|**Date**| A date |`2026-03-16`|
27
+
|**Expiration**| A timestamp with an explicit timezone offset that schedules row deletion |`2026-03-16T14:30:00-07:00`|
27
28
|**JSON**| An object or array |`{ "tier": "pro" }`|
28
29
|**Select**| One of a fixed set of options, or several |`Pro`|
29
30
31
+
Expiration accepts valid ISO timestamps with `Z` or an explicit numeric UTC offset, such as `2026-03-16T14:30:00-07:00`. Seconds are optional; fractional seconds support up to six digits. Values normalize to UTC without losing fractional precision, so `2026-03-16T14:30:00-07:00` and `2026-03-16T21:30:00Z` represent the same deadline and compare equally. Epoch numbers and timezone-free dates are not accepted. The picker edits UTC directly; cells, clipboard values, and exports use the normalized UTC value. Picking a day without a time uses midnight UTC. A table can have one Expiration column. An empty expiration leaves the row unexpired; on an update, omit the field to preserve it or set it to `null` to clear it. Expired rows are removed by periodic cleanup, subject to the table's delete lock.
32
+
30
33
Types are enforced as you enter values, so a Number column only takes numbers.
31
34
32
35
A Currency column stores a plain number and renders it in the currency you choose for that column, so filters, sorts, and exports all see the amount itself. Changing a column's currency relabels it — it does not convert the amounts.
0 commit comments