2016-11-04 02:10:36 -04:00
|
|
|
/*
|
|
|
|
* 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>
|
|
|
|
|
2021-04-09 14:21:20 -04:00
|
|
|
/* Rule of thumb: Will the current version of the server work with the new
|
2016-11-04 02:10:36 -04:00
|
|
|
* 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
|
2021-04-09 14:21:20 -04:00
|
|
|
* the server after the database was upgraded. */
|
2019-05-17 17:07:48 -04:00
|
|
|
#define SCHEMA_VERSION_MAJOR 21
|
2021-01-31 04:27:23 -05:00
|
|
|
#define SCHEMA_VERSION_MINOR 06
|
2016-11-04 02:10:36 -04:00
|
|
|
|
|
|
|
int
|
|
|
|
db_init_indices(sqlite3 *hdl);
|
|
|
|
|
2018-12-29 18:27:47 -05:00
|
|
|
int
|
|
|
|
db_init_triggers(sqlite3 *hdl);
|
|
|
|
|
2016-11-04 02:10:36 -04:00
|
|
|
int
|
|
|
|
db_init_tables(sqlite3 *hdl);
|
|
|
|
|
|
|
|
#endif /* SRC_DB_INIT_H_ */
|