mirror of
https://github.com/gristlabs/grist-core.git
synced 2024-10-27 20:44:07 +00:00
61421e8251
Each time the a Grist page is reload the `last_connection_at` of the user is updated resolve [#924](https://github.com/gristlabs/grist-core/issues/924)
47 lines
1.7 KiB
TypeScript
47 lines
1.7 KiB
TypeScript
import {makeId} from 'app/server/lib/idUtils';
|
|
import {chunk} from 'lodash';
|
|
import {MigrationInterface, QueryRunner} from "typeorm";
|
|
|
|
export class UserRefUnique1664528376930 implements MigrationInterface {
|
|
public async up(queryRunner: QueryRunner): Promise<void> {
|
|
// This is second part of migration 1663851423064-UserUUID, that makes
|
|
// the ref column unique.
|
|
|
|
// Update users that don't have unique ref set.
|
|
const userList = await queryRunner.manager.createQueryBuilder()
|
|
.select(["users.id", "users.ref"])
|
|
.from("users", "users")
|
|
.where("users.ref is null")
|
|
.getMany();
|
|
userList.forEach(u => u.ref = makeId());
|
|
|
|
const userChunks = chunk(userList, 300);
|
|
for (const users of userChunks) {
|
|
await queryRunner.connection.transaction(async manager => {
|
|
const queries = users.map((user: any, _index: number, _array: any[]) => {
|
|
return queryRunner.manager.update("users", user.id, user);
|
|
});
|
|
await Promise.all(queries);
|
|
});
|
|
}
|
|
|
|
// Mark column as unique and non-nullable.
|
|
const users = (await queryRunner.getTable('users'))!;
|
|
const oldRef = users.findColumnByName('ref')!;
|
|
const newRef = oldRef.clone();
|
|
newRef.isUnique = true;
|
|
newRef.isNullable = false;
|
|
await queryRunner.changeColumn('users', oldRef, newRef);
|
|
}
|
|
|
|
public async down(queryRunner: QueryRunner): Promise<void> {
|
|
// Mark column as non unique and nullable.
|
|
const users = (await queryRunner.getTable('users'))!;
|
|
const oldRef = users.findColumnByName('ref')!;
|
|
const newRef = oldRef.clone();
|
|
newRef.isUnique = false;
|
|
newRef.isNullable = true;
|
|
await queryRunner.changeColumn('users', oldRef, newRef);
|
|
}
|
|
}
|