1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-01-31 05:38:04 +01:00
tomahawk/data/sql/dbmigrate-25_to_26.sql

9 lines
234 B
MySQL
Raw Normal View History

2011-07-30 16:13:29 -04:00
-- Script to migate from db version 25 to 26.
-- Added the "autoload" column to dynamic_playlist
--
2011-08-06 16:57:14 -04:00
ALTER TABLE dynamic_playlist ADD COLUMN autoload BOOLEAN DEFAULT 'true';
2011-07-30 16:13:29 -04:00
UPDATE settings SET v = '26' WHERE k == 'schema_version';