diff --git a/chrome/content/zotero/xpcom/db.js b/chrome/content/zotero/xpcom/db.js index 245bc98b54..d7eafc0641 100644 --- a/chrome/content/zotero/xpcom/db.js +++ b/chrome/content/zotero/xpcom/db.js @@ -1108,21 +1108,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); - } - } - } - var ps = Components.classes["@mozilla.org/embedcomp/prompt-service;1"] .getService(Components.interfaces.nsIPromptService); diff --git a/chrome/content/zotero/xpcom/zotero.js b/chrome/content/zotero/xpcom/zotero.js index 17f0c6503f..e8aac4e2c0 100644 --- a/chrome/content/zotero/xpcom/zotero.js +++ b/chrome/content/zotero/xpcom/zotero.js @@ -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