enhance(backend): publicReactionsをデフォルトtrueに
This commit is contained in:
parent
ae5a72a2df
commit
6a25015a78
|
@ -0,0 +1,11 @@
|
||||||
|
export class PublicReactionsDefaultTrue1683683083083 {
|
||||||
|
name = 'PublicReactionsDefaultTrue1683683083083'
|
||||||
|
|
||||||
|
async up(queryRunner) {
|
||||||
|
await queryRunner.query(`ALTER TABLE "user_profile" ALTER COLUMN "publicReactions" SET DEFAULT true`);
|
||||||
|
}
|
||||||
|
|
||||||
|
async down(queryRunner) {
|
||||||
|
await queryRunner.query(`ALTER TABLE "user_profile" ALTER COLUMN "publicReactions" SET DEFAULT false`);
|
||||||
|
}
|
||||||
|
}
|
|
@ -76,7 +76,7 @@ export class UserProfile {
|
||||||
public emailNotificationTypes: string[];
|
public emailNotificationTypes: string[];
|
||||||
|
|
||||||
@Column('boolean', {
|
@Column('boolean', {
|
||||||
default: false,
|
default: true,
|
||||||
})
|
})
|
||||||
public publicReactions: boolean;
|
public publicReactions: boolean;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue