mirror of
https://github.com/paricafe/misskey.git
synced 2024-11-25 16:36:44 -06:00
12 lines
380 B
JavaScript
12 lines
380 B
JavaScript
|
export class loggedInDates1674255666603 {
|
||
|
name = 'loggedInDates1674255666603'
|
||
|
|
||
|
async up(queryRunner) {
|
||
|
await queryRunner.query(`ALTER TABLE "user_profile" ADD "loggedInDates" character varying(32) array NOT NULL DEFAULT '{}'`);
|
||
|
}
|
||
|
|
||
|
async down(queryRunner) {
|
||
|
await queryRunner.query(`ALTER TABLE "user_profile" DROP COLUMN "loggedInDates"`);
|
||
|
}
|
||
|
}
|