if i have ids with `id String *@id*` `*@default*(c...
# orm-help
j
if i have ids with
id String *@id*
*@default*(cuid())
, does that guarantee that no row will be created with the same id on any table, or is it just unique on that specific table?
1
a
Hey Joey! CUIDs have an extremely small chance of collision, so you will get unique IDs across all tables. You can read more here.
j
thanks austin!