1
0
mirror of https://github.com/MisskeyIO/misskey synced 2024-12-03 01:08:57 +09:00
MisskeyIO/packages/backend/migration/1705475608437-reversi.js

17 lines
455 B
JavaScript
Raw Normal View History

2024-01-19 20:51:49 +09:00
/*
2024-02-12 11:37:45 +09:00
* SPDX-FileCopyrightText: syuilo and misskey-project
2024-01-19 20:51:49 +09:00
* SPDX-License-Identifier: AGPL-3.0-only
*/
export class Reversi1705475608437 {
name = 'Reversi1705475608437'
async up(queryRunner) {
await queryRunner.query(`ALTER TABLE "reversi_game" ALTER COLUMN "createdAt" SET DEFAULT now()`);
2024-01-19 20:51:49 +09:00
}
async down(queryRunner) {
await queryRunner.query(`ALTER TABLE "reversi_game" ALTER COLUMN "createdAt" DROP DEFAULT`);
2024-01-19 20:51:49 +09:00
}
}