♻️ refactor(entity): simplify timestamp column definitions in entities
- replace manual @Column with TypeORM's @CreateDateColumn and @UpdateDateColumn decorators
- remove redundant default and onUpdate properties as they are handled by the decorators automatically
- update entity documentation to reflect the simplified timestamp configuration
♻️ refactor(chat): update chat message entity timestamp columns
- simplify createdAt and updatedAt columns using TypeORM's specialized decorators
- remove unnecessary default and onUpdate properties for better maintainability