소스 검색

Fixed sorting servers by name

Vadik Sirekanyan 2 년 전
부모
커밋
8bed069a4d
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      app/src/main/sqldelight/org/sirekanyan/outline/db/model/ServerEntity.sq

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

@@ -7,7 +7,7 @@ CREATE TABLE IF NOT EXISTS ServerEntity (
 );
 
 selectAll:
-SELECT * FROM ServerEntity ORDER BY id;
+SELECT * FROM ServerEntity ORDER BY lower(name), id;
 
 insert:
 INSERT OR REPLACE INTO ServerEntity VALUES ?;