I have table schema as:
table_a:
id
active boolean
table_b:
id
table_a_id ForeignKey
I want to apply a partial unique index on table_b but only if active=True for table_a_id.
Is this feasible in postgres?
I have table schema as:
table_a:
id
active boolean
table_b:
id
table_a_id ForeignKey
I want to apply a partial unique index on table_b but only if active=True for table_a_id.
Is this feasible in postgres?
Not possible. From the manual: