Something went wrong while fetching comments. Please try again.
Add authentication to currently used requests
Compare changes
+ 15
− 0
In this merge request, the following is changed:
In order to update the MySQL database, the following script can be used:
ALTER TABLE User ADD COLUMN display_name VARCHAR(512) CHARACTER SET utf8mb4 NULL;
UPDATE User SET display_name = CONCAT(first_name, ' ', last_name);
ALTER TABLE User MODIFY COLUMN display_name VARCHAR(512) CHARACTER SET utf8mb4 NOT NULL;