Skip to content

Commit 269391f

Browse files
committed
Fixed sorting servers by name
1 parent e33d052 commit 269391f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/src/main/sqldelight/org/sirekanyan/outline/db/model/ServerEntity.sq

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ CREATE TABLE IF NOT EXISTS ServerEntity (
77
);
88

99
selectAll:
10-
SELECT * FROM ServerEntity ORDER BY id;
10+
SELECT * FROM ServerEntity ORDER BY lower(name);
1111

1212
insert:
1313
INSERT OR REPLACE INTO ServerEntity VALUES ?;

0 commit comments

Comments
 (0)