[mob][photos] Fix faces db conflict

This commit is contained in:
laurenspriem 2024-04-27 14:30:34 +05:30
parent 97d8c5f83e
commit 87571159cc

View file

@ -96,6 +96,7 @@ const createNotPersonFeedbackTable = '''
CREATE TABLE IF NOT EXISTS $notPersonFeedback (
$personIdColumn TEXT NOT NULL,
$clusterIDColumn INTEGER NOT NULL
PRIMARY KEY($personIdColumn, $clusterIDColumn)
);
''';
const dropNotPersonFeedbackTable = 'DROP TABLE IF EXISTS $notPersonFeedback';