I am trying to run Alter table employee add adress string;
in a Kubernetes pod, but I am getting a Foreign Key Constraint Violated error. The table creation query and the error message are provided in the discussion thread. What could be causing this issue?
Robert Gargalac
Asked on Apr 10, 2024
Foreign Key Constraint Violated
is likely due to a constraint violation when trying to alter the table employee
by adding a new column address
.