Skip to content

Commit

Permalink
Make notes use utf8mb4_unicode_ci encoding
Browse files Browse the repository at this point in the history
  • Loading branch information
EXtremeExploit committed Nov 28, 2022
1 parent b1dd429 commit ef331c2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion template.sql
Original file line number Diff line number Diff line change
Expand Up @@ -274,7 +274,7 @@ CREATE TABLE `Beatmaps` (
`DownloadUnavailable` tinyint(1) NOT NULL,
`SubmittedBy` int(20) NOT NULL,
`SubmissionDate` datetime NOT NULL,
`Note` varchar(500) COLLATE latin1_german1_ci DEFAULT NULL,
`Note` varchar(500) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
PRIMARY KEY (`ID`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_german1_ci;

Expand Down

0 comments on commit ef331c2

Please sign in to comment.