Hi
when running this script in Firebird 4 it generated a new sequence for the table.
CREATE TABLE USERS (
user_id INTEGER GENERATED BY DEFAULT AS IDENTITY (START WITH 1),
username VARCHAR(50)
);
The sequence is always named RDB$(number of tables created by GENERATED BY DEFAULT AS IDENTITY)

However I want to be able to see which sequence is for what in my database so I want to use a custom name for this for example GEN_USERS_USER_ID
Is there any way to achieve this or to rename the generated sequence?