Remove ancient DB_REBUILD config option

This commit is contained in:
Dan Stillman 2013-08-12 03:51:48 -04:00
parent 7780560c1b
commit 73a9eb2709
2 changed files with 0 additions and 16 deletions

View file

@ -1314,21 +1314,6 @@ Zotero.DBConnection.prototype._getDBConnection = function () {
var fileName = this._dbName + '.sqlite';
if (this._dbName == 'zotero' && ZOTERO_CONFIG['DB_REBUILD']) {
if (confirm('Erase all user data and recreate database from schema?')) {
// Delete existing Zotero database
if (file.exists()) {
file.remove(null);
}
// Delete existing storage folder
var dir = Zotero.getStorageDirectory();
if (dir.exists()) {
dir.remove(true);
}
}
}
catchBlock: try {
var corruptMarker = Zotero.getZoteroDatabase(this._dbName, 'is.corrupt');
if (corruptMarker.exists()) {

View file

@ -25,7 +25,6 @@
const ZOTERO_CONFIG = {
GUID: 'zotero@chnm.gmu.edu',
DB_REBUILD: false, // erase DB and recreate from schema
REPOSITORY_URL: 'https://repo.zotero.org/repo',
REPOSITORY_CHECK_INTERVAL: 86400, // 24 hours
REPOSITORY_RETRY_INTERVAL: 3600, // 1 hour