mirror of
https://github.com/tomahawk-player/tomahawk.git
synced 2025-07-31 19:30:21 +02:00
add a createdOn property to playlists, and sort sourcetree
This commit is contained in:
11
data/sql/dbmigrate-22_to_23.sql
Normal file
11
data/sql/dbmigrate-22_to_23.sql
Normal file
@@ -0,0 +1,11 @@
|
||||
-- Script to migate from db version 22 to 23.
|
||||
-- Only change in this version is that playlists gained a createdOn date.
|
||||
-- Set all playlists to created to now.
|
||||
--
|
||||
-- Separate each command with %%
|
||||
|
||||
ALTER TABLE playlist ADD COLUMN createdOn INTEGER NOT NULL DEFAULT 0;
|
||||
|
||||
UPDATE playlist SET createdOn = strftime( '%s','now' );
|
||||
|
||||
UPDATE settings SET v = '23' WHERE k == 'schema_version';
|
Reference in New Issue
Block a user