Lines 362-367
CREATE TABLE `branches` ( -- information about your libraries or branches are st
Link Here
|
362 |
`branchip` varchar(15) default NULL, -- the IP address for your library or branch |
362 |
`branchip` varchar(15) default NULL, -- the IP address for your library or branch |
363 |
`branchprinter` varchar(100) default NULL, -- unused in Koha |
363 |
`branchprinter` varchar(100) default NULL, -- unused in Koha |
364 |
`branchnotes` mediumtext, -- notes related to your library or branch |
364 |
`branchnotes` mediumtext, -- notes related to your library or branch |
|
|
365 |
PRIMARY KEY (`branchcode`), |
365 |
UNIQUE KEY `branchcode` (`branchcode`) |
366 |
UNIQUE KEY `branchcode` (`branchcode`) |
366 |
) ENGINE=InnoDB DEFAULT CHARSET=utf8; |
367 |
) ENGINE=InnoDB DEFAULT CHARSET=utf8; |
367 |
|
368 |
|