diff --git a/server/src/models/Robot.ts b/server/src/models/Robot.ts index 444dcf2d..a255c453 100644 --- a/server/src/models/Robot.ts +++ b/server/src/models/Robot.ts @@ -22,7 +22,7 @@ interface RobotAttributes { recording: Robot; } -interface RobotCreationAttributes extends Optional {} +interface RobotCreationAttributes extends Optional { } class Robot extends Model implements RobotAttributes { public id!: string; @@ -49,7 +49,7 @@ Robot.init( { sequelize, tableName: 'robot', - timestamps: false, + timestamps: false, } );