mirror of
https://github.com/PhoenixTwoFive/karaoqueue.git
synced 2025-07-02 00:01:41 +02:00
Compare commits
2 Commits
v2023.03.2
...
v2023.03.3
Author | SHA1 | Date | |
---|---|---|---|
f32f02dc44
|
|||
3921a9ea76
|
@ -75,7 +75,9 @@ def create_list_view():
|
|||||||
stmt = text("""CREATE OR REPLACE VIEW `Liste` AS
|
stmt = text("""CREATE OR REPLACE VIEW `Liste` AS
|
||||||
SELECT Name, Title, Artist, entries.Id AS entry_ID, songs.Id AS song_ID, entries.Transferred
|
SELECT Name, Title, Artist, entries.Id AS entry_ID, songs.Id AS song_ID, entries.Transferred
|
||||||
FROM entries, songs
|
FROM entries, songs
|
||||||
WHERE entries.Song_Id=songs.Id""")
|
WHERE entries.Song_Id=songs.Id
|
||||||
|
ORDER BY entries.Id ASC
|
||||||
|
""")
|
||||||
conn.execute(stmt)
|
conn.execute(stmt)
|
||||||
conn.commit()
|
conn.commit()
|
||||||
|
|
||||||
|
@ -6,7 +6,7 @@ secrets:
|
|||||||
|
|
||||||
services:
|
services:
|
||||||
karaoqueue:
|
karaoqueue:
|
||||||
image: "ghcr.io/phoenixtwofive/karaoqueue:v2023.03.1"
|
image: "ghcr.io/phoenixtwofive/karaoqueue:v2023.03.2"
|
||||||
build: .
|
build: .
|
||||||
restart: always
|
restart: always
|
||||||
ports:
|
ports:
|
||||||
|
Reference in New Issue
Block a user