Merge branch 'develop'

This commit is contained in:
Alice Gaudon 2021-01-26 17:57:26 +01:00
commit ea75813b98
2 changed files with 4 additions and 2 deletions

View File

@ -1,6 +1,6 @@
{
"name": "swaf",
"version": "0.23.4",
"version": "0.23.5",
"description": "Structure Web Application Framework.",
"repository": "https://eternae.ink/arisu/swaf",
"author": "Alice Gaudon <alice@gaudon.pro>",

View File

@ -15,10 +15,12 @@ export default class AddNameToUsersMigration extends Migration {
// Give every user a random name
const users = await User.select().get(this.getCurrentConnection());
const callbacks: (() => Promise<void>)[] = [];
await Promise.all(users.map(user => {
user.name = nanoid();
return user.save(this.getCurrentConnection());
return user.save(this.getCurrentConnection(), c => callbacks.push(c));
}));
await Promise.all(callbacks);
await this.query(`ALTER TABLE users
ADD CONSTRAINT UNIQUE (name)`);