1
0
mirror of https://github.com/spacebarchat/server.git synced 2024-11-25 11:43:07 +01:00

set default role flags to 0

This commit is contained in:
Madeline 2023-08-07 19:41:00 +10:00
parent 12799f3d12
commit efd2318959
No known key found for this signature in database
GPG Key ID: 80D25DA3BCB24281

View File

@ -67,6 +67,6 @@ export class Role extends BaseClass {
premium_subscriber?: boolean; premium_subscriber?: boolean;
}; };
@Column() @Column({ default: 0 })
flags: number; flags: number;
} }