fix database report status enum type
All checks were successful
delpoy / build-and-deploy (push) Successful in 44s
All checks were successful
delpoy / build-and-deploy (push) Successful in 44s
This commit is contained in:
parent
9af519d72f
commit
5442d0b745
@ -47,7 +47,7 @@ export class Report extends Model {
|
|||||||
declare body: string;
|
declare body: string;
|
||||||
@Column({ type: DataTypes.BOOLEAN, allowNull: false })
|
@Column({ type: DataTypes.BOOLEAN, allowNull: false })
|
||||||
declare draft: boolean;
|
declare draft: boolean;
|
||||||
@Column({ type: DataTypes.ENUM('java', 'bedrock', 'noauth'), allowNull: false })
|
@Column({ type: DataTypes.ENUM('none', 'review', 'reviewed'), allowNull: false })
|
||||||
declare status: 'none' | 'review' | 'reviewed';
|
declare status: 'none' | 'review' | 'reviewed';
|
||||||
@Column({ type: DataTypes.STRING })
|
@Column({ type: DataTypes.STRING })
|
||||||
declare notice: string;
|
declare notice: string;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user