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

7 lines
269 B
MySQL
Raw Normal View History

2013-07-29 21:10:57 +02:00
-- Script to migate from db version 29 to 30.
-- Add the following index to speed up all Operations that deal with a specific time period of plays
CREATE INDEX playback_log_playtime ON playback_log(playtime);
UPDATE settings SET v = '30' WHERE k == 'schema_version';