Merge 7f6f294235ba8dd792b6c75e8c4545a3816e8f4b into e86dc03619ffb8477083de23bb4daed567ef0a2c

This commit is contained in:
Kendall Garner 2025-11-02 21:36:43 +00:00 committed by GitHub
commit 2315edf903
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -0,0 +1,9 @@
-- +goose Up
-- +goose StatementBegin
ALTER TABLE playqueue ADD COLUMN position_int integer;
UPDATE playqueue SET position_int = CAST(position as INTEGER) ;
ALTER TABLE playqueue DROP COLUMN position;
ALTER TABLE playqueue RENAME COLUMN position_int TO position;
-- +goose StatementEnd
-- +goose Down