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:
parent
d4fa384204
commit
6a3917bb12
|
|
@ -33,8 +33,8 @@
|
||||||
|
|
||||||
(unless (db:collection-exists-p "playlist_tracks")
|
(unless (db:collection-exists-p "playlist_tracks")
|
||||||
(db:create "playlist_tracks" '((track_id :integer)
|
(db:create "playlist_tracks" '((track_id :integer)
|
||||||
(position :ingeger)
|
(position :integer)
|
||||||
(added_date :timestamp))))
|
(added_date :integer))))
|
||||||
|
|
||||||
;; TODO: the radiance db interface is too basic to contain anything
|
;; TODO: the radiance db interface is too basic to contain anything
|
||||||
;; but strings, integers, booleans, and maybe timestamps... we will
|
;; but strings, integers, booleans, and maybe timestamps... we will
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue