Lines 4156-4162
CREATE TABLE library_groups (
Link Here
|
4156 |
description MEDIUMTEXT NULL DEFAULT NULL, -- Longer explanation of the group, if necessary |
4156 |
description MEDIUMTEXT NULL DEFAULT NULL, -- Longer explanation of the group, if necessary |
4157 |
ft_hide_patron_info tinyint(1) NOT NULL DEFAULT 0, -- Turn on the feature "Hide patron's info" for this group |
4157 |
ft_hide_patron_info tinyint(1) NOT NULL DEFAULT 0, -- Turn on the feature "Hide patron's info" for this group |
4158 |
ft_search_groups_opac tinyint(1) NOT NULL DEFAULT 0, -- Use this group for staff side search groups |
4158 |
ft_search_groups_opac tinyint(1) NOT NULL DEFAULT 0, -- Use this group for staff side search groups |
4159 |
ft_search_groups_staff tinyint(1) NOT NULL DEFAULT 0, -- Use this group for opac side search groups |
4159 |
ft_search_groups_staff tinyint(1) NOT NULL DEFAULT 0, -- Use this group for opac side search groups |
|
|
4160 |
ft_local_hold_group tinyint(1) NOT NULL DEFAULT 0, -- Use this group to identify libraries as pick up location for holds |
4160 |
created_on TIMESTAMP NULL, -- Date and time of creation |
4161 |
created_on TIMESTAMP NULL, -- Date and time of creation |
4161 |
updated_on TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, -- Date and time of last |
4162 |
updated_on TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, -- Date and time of last |
4162 |
PRIMARY KEY id ( id ), |
4163 |
PRIMARY KEY id ( id ), |
4163 |
- |
|
|