mirror of
https://github.com/owntone/owntone-server.git
synced 2024-12-31 17:43:22 -05:00
1d2e4dc7a8
(db upgrade to v22.00) `scan_kind` identifies the library "scanner" component that created the item and is responsible to keep it up to date (rescan). The library update now supports passing a `scan_kind` to update only the items of one particular "scanner". This allows e. g. to only update the item from the Spotify library or only update the RSS feeds. The OwnTone database is upgraded to v22.00 and the `scan_kind` columns in `files`, `playlists`, `directories` are identified by: 1. Check if item is part of a RSS playlist (podcast RSS feed), they belong to the "rssscanner" 2. Check if item has a Spotify `virtual_path`, they belong to the "spotifyscanner" 3. Remaining items belong to the "filescanner"
41 lines
1.3 KiB
C
41 lines
1.3 KiB
C
/*
|
|
* Copyright (C) 2015 Christian Meffert <christian.meffert@googlemail.com>
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
*/
|
|
|
|
#ifndef SRC_DB_INIT_H_
|
|
#define SRC_DB_INIT_H_
|
|
|
|
#include <sqlite3.h>
|
|
|
|
/* Rule of thumb: Will the current version of the server work with the new
|
|
* version of the database? If yes, then it is a minor upgrade, if no, then it
|
|
* is a major upgrade. In other words minor version upgrades permit downgrading
|
|
* the server after the database was upgraded. */
|
|
#define SCHEMA_VERSION_MAJOR 22
|
|
#define SCHEMA_VERSION_MINOR 0
|
|
|
|
int
|
|
db_init_indices(sqlite3 *hdl);
|
|
|
|
int
|
|
db_init_triggers(sqlite3 *hdl);
|
|
|
|
int
|
|
db_init_tables(sqlite3 *hdl);
|
|
|
|
#endif /* SRC_DB_INIT_H_ */
|