I have been created a new table and I am inserting data from my no-sql database.
The weird thing is I have a Uniqueness Constraint setup for it.
ALTER TABLE public.tablecolumns
ADD CONSTRAINT common_col UNIQUE (name, data_type, col_type, repeated, visibility, is_public, fieldowner);
Liquibase script
<addUniqueConstraint
columnNames="name, data_type, col_type, repeated, visibility, is_public, fieldowner"
constraintName="common_col"
tableName="tablecolumns"
/>
But when I subsequently add the same columns, all get populated without an issue. Can you tell me why is this happening?