-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Labels
server-apiIssues for server apiIssues for server api
Description
Implement a new field rating in the users table to store. This score will be an integer in the database but should be displayed like 100.01 value with a fractional part.
Steps
- Add a new field
ratingto theuserstable with the typeint. - Implement a function to display the
ratingas a monetary value with two decimal places. - The calculation formula for the
ratingwill be provided later - @sea-kg
Database Migration
ALTER TABLE users
ADD COLUMN rating INT DEFAULT 0;Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
server-apiIssues for server apiIssues for server api