Skip to content

Commit

Permalink
Fixed sorting servers by name
Browse files Browse the repository at this point in the history
  • Loading branch information
sirekanian committed Dec 30, 2023
1 parent e33d052 commit 24a3f19
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ CREATE TABLE IF NOT EXISTS ServerEntity (
);

selectAll:
SELECT * FROM ServerEntity ORDER BY id;
SELECT * FROM ServerEntity ORDER BY name;

insert:
INSERT OR REPLACE INTO ServerEntity VALUES ?;
Expand Down

0 comments on commit 24a3f19

Please sign in to comment.