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
replace usage of v4() with Ulid.generate().toCanonical()
because ULIDs are sortable, remove the use of a separate timestamp column if only used for sorting (because ULID uses Unix epoch which has no timezone)
A globally unique ID is needed, and ULID has advantages over UUID v4, so switch over to ULID.
See https://github.com/ulid/spec\#universally-unique-lexicographically-sortable-identifier
Caveats:
Task:
v4()withUlid.generate().toCanonical()