Avoid old issue regarding duplicated hosts in db

pull/1386/head
Chocobozzz 2018-10-08 11:58:18 +02:00
parent 505319061e
commit 6321cbc3e7
No known key found for this signature in database
GPG Key ID: 583A612D890159BE
1 changed files with 6 additions and 0 deletions

View File

@ -5,6 +5,12 @@ async function up (utils: {
queryInterface: Sequelize.QueryInterface
sequelize: Sequelize.Sequelize
}): Promise<any> {
// Delete duplicated keys
{
const query = 'DELETE FROM "server" s1 USING "server" s2 WHERE s1.id < s2.id AND s1."host" = s2."host"'
await utils.sequelize.query(query)
}
{
const query = 'DELETE FROM "videoFile" vf1 USING "videoFile" vf2 WHERE vf1.id < vf2.id ' +
'AND vf1."videoId" = vf2."videoId" AND vf1.resolution = vf2.resolution AND vf1.fps IS NULL'