This repository has been archived on 2025-01-27. You can view files and clone it, but cannot push or open issues or pull requests.
puyoskey-rose/packages/backend/migration/1710919614610-oshi.js
2024-08-01 23:39:36 +09:00

22 lines
613 B
JavaScript

export class Oshi1710919614610 {
name = "Oshi1710919614610";
async up(queryRunner) {
// Add oshi column
await queryRunner.query(`
ALTER TABLE "user_profile"
ADD "oshi" character varying(128) NULL
`);
// Comment on the oshi column
await queryRunner.query(`
COMMENT ON COLUMN "user_profile"."oshi"
IS 'You can register your support.'
`);
// Add oshistartdate column
await queryRunner.query(`
ALTER TABLE "user_profile"
ADD "oshistartdate" date NULL
`);
}
}