To switch to an auto-incrementing bigint PK, you open the id
attribute and select the option "large values". It will display bigint
as database type.
We would need to add a serial
attribute type to r3 to make this straightforward; currently, you´d use an insert trigger to generate the next ID. If you index this attribute and make it unique, it works the same as a regular auto-increment.