Using Enterprise Architect version 13.0.1309, I'm designing a database model to be used with Oracle 12c. I want to generate a DDL script from my model that uses the "new" IDENTITY column type instead of the explicitly created sequences and triggers.
Example:
CREATE TABLE identity_test_tab (
id NUMBER GENERATED BY DEFAULT AS IDENTITY,
description VARCHAR2(30)
);
However, I either can't find the option in EA or it is not supported. Which one is it?