1
1
mirror of https://github.com/kokonect-link/cherrypick synced 2024-11-01 15:45:58 +09:00
cherrypick/packages/backend/migration/1563757595828-UsedUsername.js

14 lines
518 B
JavaScript
Raw Normal View History

/*
* SPDX-FileCopyrightText: syuilo and other misskey contributors
* SPDX-License-Identifier: AGPL-3.0-only
*/
2022-03-01 00:07:03 +09:00
export class UsedUsername1563757595828 {
2021-11-12 02:02:25 +09:00
async up(queryRunner) {
2019-07-22 10:15:00 +09:00
await queryRunner.query(`CREATE TABLE "used_username" ("username" character varying(128) NOT NULL, "createdAt" TIMESTAMP WITH TIME ZONE NOT NULL, CONSTRAINT "PK_78fd79d2d24c6ac2f4cc9a31a5d" PRIMARY KEY ("username"))`);
}
2021-11-12 02:02:25 +09:00
async down(queryRunner) {
2019-07-22 10:15:00 +09:00
await queryRunner.query(`DROP TABLE "used_username"`);
}
}