diff options
Diffstat (limited to 'server/initializers/migrations/0175-actor-follow-counts.ts')
-rw-r--r-- | server/initializers/migrations/0175-actor-follow-counts.ts | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/server/initializers/migrations/0175-actor-follow-counts.ts b/server/initializers/migrations/0175-actor-follow-counts.ts deleted file mode 100644 index d7853f8dc..000000000 --- a/server/initializers/migrations/0175-actor-follow-counts.ts +++ /dev/null | |||
@@ -1,23 +0,0 @@ | |||
1 | import * as Sequelize from 'sequelize' | ||
2 | |||
3 | async function up (utils: { | ||
4 | transaction: Sequelize.Transaction | ||
5 | queryInterface: Sequelize.QueryInterface | ||
6 | sequelize: Sequelize.Sequelize | ||
7 | }): Promise<void> { | ||
8 | const query = 'UPDATE "actor" SET ' + | ||
9 | '"followersCount" = (SELECT COUNT(*) FROM "actorFollow" WHERE "actor"."id" = "actorFollow"."targetActorId"), ' + | ||
10 | '"followingCount" = (SELECT COUNT(*) FROM "actorFollow" WHERE "actor"."id" = "actorFollow"."actorId") ' + | ||
11 | 'WHERE "actor"."serverId" IS NULL' | ||
12 | |||
13 | await utils.sequelize.query(query) | ||
14 | } | ||
15 | |||
16 | function down (options) { | ||
17 | throw new Error('Not implemented.') | ||
18 | } | ||
19 | |||
20 | export { | ||
21 | up, | ||
22 | down | ||
23 | } | ||