You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
column employee.department refers to department.id and
column employee.boss refers to bosses.id
so table employee has 2 FOREIGN keys:
CREATE TABLE employee (
id TEXT,
department TEXT,
boss TEXT,
FOREIGN KEY(department) REFERENCES department(id) ON UPDATE RESTRICT ON DELETE CASCADE,
FOREIGN KEY(boss) REFERENCES boss(id) ON UPDATE RESTRICT ON DELETE CASCADE
)
but only 1 FOREIGN KEY is supported, and I'm hitting
column
employee.department
refers todepartment.id
andcolumn
employee.boss
refers tobosses.id
so table
employee
has 2 FOREIGN keys:but only 1 FOREIGN KEY is supported, and I'm hitting
pypika/pypika/queries.py
Line 1903 in a7b01da
The text was updated successfully, but these errors were encountered: