Add 'archived' property to Zotero.Library objects

Set when a user loses access to a library but chooses to keep it as a
read-only library.
This commit is contained in:
Dan Stillman 2017-02-24 00:13:11 -05:00
parent 88184b341b
commit 9ac458e05c
5 changed files with 53 additions and 4 deletions

View file

@ -1,4 +1,4 @@
-- 90
-- 91
-- Copyright (c) 2009 Center for History and New Media
-- George Mason University, Fairfax, Virginia, USA
@ -255,7 +255,8 @@ CREATE TABLE libraries (
filesEditable INT NOT NULL,
version INT NOT NULL DEFAULT 0,
storageVersion INT NOT NULL DEFAULT 0,
lastSync INT NOT NULL DEFAULT 0
lastSync INT NOT NULL DEFAULT 0,
archived INT NOT NULL DEFAULT 0
);
CREATE TABLE users (