Lines 1558-1563
CREATE TABLE `branches` (
Link Here
|
1558 |
`marcorgcode` varchar(16) DEFAULT NULL COMMENT 'MARC Organization Code, see http://www.loc.gov/marc/organizations/orgshome.html, when empty defaults to syspref MARCOrgCode', |
1558 |
`marcorgcode` varchar(16) DEFAULT NULL COMMENT 'MARC Organization Code, see http://www.loc.gov/marc/organizations/orgshome.html, when empty defaults to syspref MARCOrgCode', |
1559 |
`pickup_location` tinyint(1) NOT NULL DEFAULT 1 COMMENT 'the ability to act as a pickup location', |
1559 |
`pickup_location` tinyint(1) NOT NULL DEFAULT 1 COMMENT 'the ability to act as a pickup location', |
1560 |
`public` tinyint(1) NOT NULL DEFAULT 1 COMMENT 'whether this library should show in the opac', |
1560 |
`public` tinyint(1) NOT NULL DEFAULT 1 COMMENT 'whether this library should show in the opac', |
|
|
1561 |
`userjs` longtext DEFAULT NULL COMMENT 'branch specific javascript for the OPAC', |
1562 |
`usercss` longtext DEFAULT NULL COMMENT 'branch specific css for the OPAC', |
1561 |
PRIMARY KEY (`branchcode`) |
1563 |
PRIMARY KEY (`branchcode`) |
1562 |
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; |
1564 |
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; |
1563 |
/*!40101 SET character_set_client = @saved_cs_client */; |
1565 |
/*!40101 SET character_set_client = @saved_cs_client */; |
1564 |
- |
|
|