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
{{ message }}
This repository was archived by the owner on Feb 2, 2026. It is now read-only.
G-3150: Try to use identity columns for surrogate keys.
Currently has this as the good example:
location_id number(10) generated always as identity
However, the most flexible identity configuration is actually this:
location_id number(10) generated by default on null as identity