Lines 4358-4364
CREATE TABLE library_groups (
Link Here
|
4358 |
title VARCHAR(100) NULL DEFAULT NULL, -- Short description of the goup |
4358 |
title VARCHAR(100) NULL DEFAULT NULL, -- Short description of the goup |
4359 |
description MEDIUMTEXT NULL DEFAULT NULL, -- Longer explanation of the group, if necessary |
4359 |
description MEDIUMTEXT NULL DEFAULT NULL, -- Longer explanation of the group, if necessary |
4360 |
ft_hide_patron_info tinyint(1) NOT NULL DEFAULT 0, -- Turn on the feature "Hide patron's info" for this group |
4360 |
ft_hide_patron_info tinyint(1) NOT NULL DEFAULT 0, -- Turn on the feature "Hide patron's info" for this group |
4361 |
ft_limit_item_editing tinyint(1) NOT NULL DEFAULT 0, -- Turn on the feature "Hide patron's info" for this group |
4361 |
ft_limit_item_editing tinyint(1) NOT NULL DEFAULT 0, -- Turn on the feature "Limit item editing" for this group |
4362 |
ft_search_groups_opac tinyint(1) NOT NULL DEFAULT 0, -- Use this group for staff side search groups |
4362 |
ft_search_groups_opac tinyint(1) NOT NULL DEFAULT 0, -- Use this group for staff side search groups |
4363 |
ft_search_groups_staff tinyint(1) NOT NULL DEFAULT 0, -- Use this group for opac side search groups |
4363 |
ft_search_groups_staff tinyint(1) NOT NULL DEFAULT 0, -- Use this group for opac side search groups |
4364 |
ft_local_hold_group tinyint(1) NOT NULL DEFAULT 0, -- Use this group to identify libraries as pick up location for holds |
4364 |
ft_local_hold_group tinyint(1) NOT NULL DEFAULT 0, -- Use this group to identify libraries as pick up location for holds |
4365 |
- |
|
|