Skip to content

Commit

Permalink
Collation Documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
BeratAhmetaj committed Jan 21, 2024
1 parent d08dca5 commit f51908b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
2 changes: 1 addition & 1 deletion APP/.idea/workspace.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,11 @@ public String toString() {
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
private int id;
/**
* @Note This field represents the name of the museum.
* @since 1.0
* @implNote This implementation consists of the name. Collation is Macedonian_FYROM_90_CI_AS. Without this, the name is not displayed correctly, because of the Macedonian characters.
*/
@Column(name = "name", columnDefinition = "VARCHAR(255) COLLATE Macedonian_FYROM_90_CI_AS")
private String name;
private double latitude;
Expand Down

0 comments on commit f51908b

Please sign in to comment.