https://bugs.kde.org/show_bug.cgi?id=435455

--- Comment #1 from meku <kde.b...@meku.org> ---
I suspect the DROP TABLE is failing due to a foreign key linking to the
FaceMatrices table.

Additionally the CREATE TABLE FaceMatrices statement will not run due to
missing field escaping:

This line:
CONSTRAINT FaceEmbedding_Identities FOREIGN KEY (identity) REFERENCES
Identities (id) ON DELETE CASCADE ON UPDATE CASCADE)

Needs to escape the `identity` field:
CONSTRAINT FaceEmbedding_Identities FOREIGN KEY (`identity`) REFERENCES
Identities (id) ON DELETE CASCADE ON UPDATE CASCADE)

-- 
You are receiving this mail because:
You are watching all bug changes.

Reply via email to