1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-08-13 17:43:59 +02:00

add migrate script

This commit is contained in:
Leo Franchi
2011-07-30 16:13:29 -04:00
parent c76fabbc2b
commit 9c36b32e8e

View File

@@ -0,0 +1,8 @@
-- Script to migate from db version 25 to 26.
-- Added the "autoload" column to dynamic_playlist
--
ALTER TABLE dynamic_playlist ADD COLUMN autoload BOOLEAN DEFAULT 1;
UPDATE settings SET v = '26' WHERE k == 'schema_version';