Only create INDEX 'added' when it does not already exist

This commit is contained in:
nymkappa 2022-01-11 11:47:04 +09:00
parent 1e78326ee4
commit 0e6cc67c0a
No known key found for this signature in database
GPG Key ID: E155910B16E8BD04

View File

@ -172,8 +172,7 @@ class DatabaseMigration {
}
if (version < 2) {
queries.push(`ALTER TABLE statistics
ADD INDEX added (added);`);
queries.push(`CREATE INDEX IF NOT EXISTS added ON statistics (added);`);
}
return queries;