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:
parent
88184b341b
commit
9ac458e05c
5 changed files with 53 additions and 4 deletions
|
@ -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 (
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue