In order to perform some complex offline migration I need to insert some custom field values directly inside the database but I just discovered that the ID column does not have auto-increment.
INSERT INTO customfieldvalue (customfield, issue, stringvalue) VALUES (10105, 10303 , '11');
What would be the appropiate way to do the insterts?
FYI, that's on PostgreSQL.