Chris Gurba
04/28/2022, 10:08 PMCREATE TABLE color (
color_id INT GENERATED BY DEFAULT AS IDENTITY
(START WITH 10 INCREMENT BY 10), // <- this column
color_name VARCHAR NOT NULL
);
Chris Gurba
04/28/2022, 10:20 PMChris Gurba
04/28/2022, 10:20 PMNurul
04/29/2022, 9:58 AM--create-only
flag to just create the migration file and then update it as mentioned in the comment, and there should be no issue in keeping INT.