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