mirror of
https://git.boykissers.com/pawkey/pawkey-sk.git
synced 2025-12-20 04:04:16 +00:00
12 lines
336 B
JavaScript
12 lines
336 B
JavaScript
export class IsIndexable1699376974000 {
|
|
name = 'IsIndexable1699376974000'
|
|
|
|
async up(queryRunner) {
|
|
await queryRunner.query(`ALTER TABLE "user" ADD "isIndexable" boolean NOT NULL DEFAULT true`);
|
|
}
|
|
|
|
async down(queryRunner) {
|
|
await queryRunner.query(`ALTER TABLE "user" DROP COLUMN "isIndexable"`);
|
|
}
|
|
}
|