Knex currently implements auto-incrementing columns in Oracle using a legacy approach that relies on sequences and triggers. When a user calls table.increments('id'), Knex generates two SQL statements ...
-- Auto-increment allows a unique number to be generated automatically when a new record is inserted into a table. -- By default, the starting value for AUTO_INCREMENT is 1, and it will increment by 1 ...