1
0
Fork 0

Add local actor follow url migration

This commit is contained in:
Chocobozzz 2020-12-01 10:25:11 +01:00
parent 9e3e4adc65
commit d9550daf05
No known key found for this signature in database
GPG Key ID: 583A612D890159BE
2 changed files with 28 additions and 1 deletions

View File

@ -24,7 +24,7 @@ import { CONFIG, registerConfigChangedHandler } from './config'
// ---------------------------------------------------------------------------
const LAST_MIGRATION_VERSION = 560
const LAST_MIGRATION_VERSION = 565
// ---------------------------------------------------------------------------

View File

@ -0,0 +1,27 @@
import * as Sequelize from 'sequelize'
async function up (utils: {
transaction: Sequelize.Transaction
queryInterface: Sequelize.QueryInterface
sequelize: Sequelize.Sequelize
db: any
}): Promise<void> {
{
const query = `
UPDATE "actorFollow" SET url = follower.url || '/follows/' || following.id
FROM actor follower, actor following
WHERE follower."serverId" IS NULL AND follower.id = "actorFollow"."actorId" AND following.id = "actorFollow"."targetActorId"
`
await utils.sequelize.query(query)
}
}
function down (options) {
throw new Error('Not implemented.')
}
export {
up,
down
}