Lines 277-282
CREATE TABLE `branches` ( -- information about your libraries or branches are st
Link Here
|
277 |
`branchprinter` varchar(100) default NULL, -- unused in Koha |
277 |
`branchprinter` varchar(100) default NULL, -- unused in Koha |
278 |
`branchnotes` mediumtext, -- notes related to your library or branch |
278 |
`branchnotes` mediumtext, -- notes related to your library or branch |
279 |
opac_info text, -- HTML that displays in OPAC |
279 |
opac_info text, -- HTML that displays in OPAC |
|
|
280 |
`pickup_location` tinyint(1) NOT NULL default 1, -- the ability to act as a pickup location |
280 |
PRIMARY KEY (`branchcode`) |
281 |
PRIMARY KEY (`branchcode`) |
281 |
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; |
282 |
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; |
282 |
|
283 |
|
283 |
- |
|
|