Skip to content

Commit

Permalink
feat(color): Support HexCode in suffix color.
Browse files Browse the repository at this point in the history
  • Loading branch information
CarmJos committed Feb 28, 2024
1 parent 8e53847 commit c7a8ac5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ public class SuffixLoader extends UserHandlerLoader<SuffixAccount> {
protected SQLTable table = SQLTable.of("user_suffix", builder -> {
builder.addColumn("user", "INT UNSIGNED NOT NULL PRIMARY KEY");
builder.addColumn("content", "VARCHAR(255)");
builder.addColumn("color", "CHAR(1)");
builder.addColumn("color", "VARCHAR(7)");
});

public SuffixLoader(@NotNull Plugin plugin) {
Expand Down

0 comments on commit c7a8ac5

Please sign in to comment.