Lines 3787-3792
CREATE TABLE `library_groups` (
Link Here
|
3787 |
`ft_search_groups_opac` tinyint(1) NOT NULL DEFAULT 0 COMMENT 'Use this group for staff side search groups', |
3787 |
`ft_search_groups_opac` tinyint(1) NOT NULL DEFAULT 0 COMMENT 'Use this group for staff side search groups', |
3788 |
`ft_search_groups_staff` tinyint(1) NOT NULL DEFAULT 0 COMMENT 'Use this group for opac side search groups', |
3788 |
`ft_search_groups_staff` tinyint(1) NOT NULL DEFAULT 0 COMMENT 'Use this group for opac side search groups', |
3789 |
`ft_local_hold_group` tinyint(1) NOT NULL DEFAULT 0 COMMENT 'Use this group to identify libraries as pick up location for holds', |
3789 |
`ft_local_hold_group` tinyint(1) NOT NULL DEFAULT 0 COMMENT 'Use this group to identify libraries as pick up location for holds', |
|
|
3790 |
`ft_local_float_group` tinyint(1) NOT NULL DEFAULT 0 COMMENT 'Use this group to identify libraries as part of float group', |
3790 |
`created_on` timestamp NULL DEFAULT NULL COMMENT 'Date and time of creation', |
3791 |
`created_on` timestamp NULL DEFAULT NULL COMMENT 'Date and time of creation', |
3791 |
`updated_on` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp() COMMENT 'Date and time of last', |
3792 |
`updated_on` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp() COMMENT 'Date and time of last', |
3792 |
PRIMARY KEY (`id`), |
3793 |
PRIMARY KEY (`id`), |
3793 |
- |
|
|