fix: Correct database schema bugs from upstream merge

- Fix typo: :ingeger -> :integer in playlist_tracks.position
- Fix unsupported type: :timestamp -> :integer in playlist_tracks.added_date
- LambdaLite only supports :text, :integer, and :boolean types
This commit is contained in:
glenneth 2025-11-06 06:16:57 +03:00 committed by Brian O'Reilly
parent d4fa384204
commit 6a3917bb12
1 changed files with 2 additions and 2 deletions

View File

@ -33,8 +33,8 @@
(unless (db:collection-exists-p "playlist_tracks")
(db:create "playlist_tracks" '((track_id :integer)
(position :ingeger)
(added_date :timestamp))))
(position :integer)
(added_date :integer))))
;; TODO: the radiance db interface is too basic to contain anything
;; but strings, integers, booleans, and maybe timestamps... we will