@@ -, +, @@ --- installer/data/mysql/atomicupdate/bug_19524.sql | 1 + installer/data/mysql/kohastructure.sql | 1 + 2 files changed, 2 insertions(+) create mode 100644 installer/data/mysql/atomicupdate/bug_19524.sql --- a/installer/data/mysql/atomicupdate/bug_19524.sql +++ a/installer/data/mysql/atomicupdate/bug_19524.sql @@ -0,0 +1, @@ +ALTER TABLE patron_lists ADD COLUMN shared tinyint(1) default 0 AFTER owner; --- a/installer/data/mysql/kohastructure.sql +++ a/installer/data/mysql/kohastructure.sql @@ -3516,6 +3516,7 @@ CREATE TABLE patron_lists ( patron_list_id int(11) NOT NULL AUTO_INCREMENT, -- unique identifier name varchar(255) CHARACTER SET utf8mb4 NOT NULL, -- the list's name owner int(11) NOT NULL, -- borrowernumber of the list creator + shared tinyint(1) default 0, PRIMARY KEY (patron_list_id), KEY owner (owner) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; --